Automap feature i Outlook

Outlook automappar en mailbox man har FullAccess till.

Från Exchange 2010 SP1 så öppnar Outlook automatiskt en mailbox man har FullAccess till. För att stänga av detta så kör på Exchange server i Powershell.
Add-MailboxPermission -Identity >delad_mailbox -User ’Username’ -AccessRight FullAccess -InheritanceType All -Automapping $false
För att stänga av på alla som har FullAccess till en mailbox.
$FixAutoMapping = Get-MailboxPermission sharedmailbox |where {$_AccessRights -eq ”FullAccess” -and $_IsInherited -eq $false}
$FixAutoMapping | Remove-MailboxPermission
$FixAutoMapping | ForEach {Add-MailboxPermission -Identity $_.Identity -User $_.User -AccessRights:FullAccess -AutoMapping $false}