Skip to main content

Home/ PowerShell/ How to grant Full Access to Mailbox with Powershell
anonymous

How to grant Full Access to Mailbox with Powershell - 0 views

Ex2010 Powershell

started by anonymous on 03 Aug 12
  • anonymous
     
    === Granting full access ===

    Add-MailboxPermission "Joe Adams" -AccessRights FullAccess -user "janea"

    Besides FullAccess, the following mailbox permissions can be granted using Add-MailboxPermission:

    SendAs
    ExternalAccount
    DeleteItem
    ReadPermission
    ChangePermission
    ChangeOwner

    === Viewing permissions using Get-MailboxPermission ===

    To view permissions on a mailbox, use the Get-MailboxPermission command:

    Get-MailboxPermission "Joe Adams"

    To view explicitly assigned permissions (i.e. permissions that are not inherited):

    Get-MailboxPermission "Joe Adams" | where {$_.IsInherited -eq $false}

    To view all security principals with Full Access permission on a mailbox:

    Get-MailboxPermission "Joe Adams" | where {$_.AccessRights -like "*FullAccess*"}

    Source to this info: http://exchangepedia.com/2007/06/how-to-grant-full-mailbox-access-permission.html

To Top

Start a New Topic » « Back to the PowerShell group