https://support.microsoft.com/en-au/kb/2646504
The trick here is that the automapping feature is enabled when full rights are given to the shared mailbox.
In powershell, you need to remove the rights, then add it back without the automapping feature (enabled by default)
The trick here is that the automapping feature is enabled when full rights are given to the shared mailbox.
In powershell, you need to remove the rights, then add it back without the automapping feature (enabled by default)
Add-MailboxPermission -Identity <Mailbox ID1> -User <Mailbox ID2>-AccessRights FullAccess -AutoMapping:$false
Comments
Post a Comment