Manage full access permissions on mailboxes in Exchange 2010Just a couple of quick tips on how to manage full access permissions on mailboxes in Exchange 2010. Grant permissions on a single mailboxUse the following command to grant access to just one mailbox for a single user: Add-MailboxPermission -Identity "<TargetMailbox>" -User <UserToGrantPermissionsTo> -AccessRights Fullaccess -InheritanceType allExample: Add-MailboxPermission -Identity "Test" -User Administrator -AccessRights Fullaccess -InheritanceType all Grant permissions on all mailboxesUse the following command to grant access to all mailboxes for a single user: Get-Mailbox | Add-MailboxPermission -User <UserToGrantPermissionsTo> -AccessRights Fullaccess -InheritanceType allExample: Get-Mailbox | Add-MailboxPermission -User Administrator -AccessRights Fullaccess -InheritanceType allNote: In the screenshot below I received a message saying that Administrator already have access to the mailbox Test (Yellow text message).Grant permissions on mailboxes using WhereWe might as well add a where to the command while we are at it. With this command we grant access to all mailboxes in a specific OU for a single user:Get-Mailbox | Where { $_.OrganizationalUnit –eq “<OrganizationalOUPath>” } | Add-MailboxPermission -User <UserToGrantPermissionsTo> -AccessRights Fullaccess -InheritanceType allExample: Get-Mailbox | Where { $_.OrganizationalUnit –eq “sundis.local/Test/Users” } | Add-MailboxPermission -User Administrator -AccessRights Fullaccess -InheritanceType all Remove permissions on a single mailboxQuite simple, just change Add to Remove: Remove-MailboxPermission -Identity "<TargetMailbox>" -User <UserToRemovePermissionsFor> -AccessRights Fullaccess -InheritanceType allExample: Remove-MailboxPermission -Identity "Test" -User Administrator -AccessRights Fullaccess -InheritanceType all Remove permissions on all mailboxesWell you have probably figured this one out already, but I will show it to you anyway: Get-Mailbox | Remove-MailboxPermission -User <UserToGrantPermissionsTo> -AccessRights Fullaccess -InheritanceType allExample: Get-Mailbox | Remove-MailboxPermission -User Administrator -AccessRights Fullaccess -InheritanceType allNote: As you can se below, using this command will remove the users full access to its own mailbox. That is not good, this command should be used with care…Thanks for reading, I hope that you found it useful.