If the solution were only that easy. This is a shared mailbox that I have FULLACCESS to; there is NO EMAIL account in my profile.
The contributor: (or "feature") is "automapping!! (Here is how to set automapping.) The solution, for EXCHANGE 2010 Sp2, is to DISABLE AUTOMAPPING! Here are the powershell commands taken from a Micosoft Technet forum:
Disable automapping between "shared mailbox" and "delegate":
Add-MailboxPermission "Shared Mailbox" -User
If you want to set it on all the mailboxes:
$mailbox = Get-Mailbox
$test = $mailbox |
Foreach {Add-mailboxPermission $_.Name –User ‘administrator’ –AccessRight FullAccess –Automapping $false}
That's it!
Russ
2 comments:
I do have Exchange 2010 SP1 but after Add-MailboxPermission "Shared Mailbox" -User -AccessRights FullAccess -AutoMapping:$false it gives me this error:
'A positional parameter cannot be found that accepts argument '-Automapping'
The instructions are for SP2. Thank you for the word from the field that SP1 is insufficient.
Post a Comment