Grant full mailbox access to an Exchange 2010 mailbox without Auto mapping the mailbox

Some examples below is granting full mailbox permissions to users without the auto mapping feature.

Run the following command to grant full mailbox access to a single mailbox:

Add-MailboxPermission –Identity <mailbox> –User <user> -AccessRights FullAccess -InheritanceType all -Automapping $false

Or, to give a user access full access permissions to all mailboxes, run:

Get-Mailbox | Add-MailboxPermission –User <user> -AccessRights FullAccess -InheritanceType all -Automapping $false

 

Leave a Reply

Please log in using one of these methods to post your comment:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s