Exchange 2010 Automapping fun (Sarcasm content high)
So we have a user who needed Full Access permission to a mailbox and we granted the permission.
This means Exchange Automaps the mailbox and gives no options in Outlook or Exchange GUI to turn Automapping off. Of course the user doesn't want it Automapped.
So we open Exchange Management Shell and issue the command:
Add-MailboxPermission -Identity JeroenC -User 'Mark Steele' -AccessRight FullAccess -InheritanceType All -Automapping $false
As specified from this resource: http://technet.microsoft.com/en-us/library/hh529943(v=exchg.141).aspx
However the result of this command is:
A positional parameter cannot be found that accepts argument '-Automapping'.
+ CategoryInfo: InvalidArgument: (:) [Add-MailboxPermission], ParameterBindingException
+ FullyQualifiedErrorId: PositionalParameterNotFound,Add-MailboxPermission
The arcane error seems to indicate that '-Automapping' is an invalid argument for the command Add-MainboxPermission, which of course makes no sense at all.
We're stumped.