You have an Exchange Server 2013 organization that contains four servers.
All users access their email by using Microsoft Outlook 2010.
An administrator deploys a shared mailbox named Project.
You assign all of the users in the marketing department Full Access permissions to Project.
You discover that Project automatically appears in Outlook to all of the marketing department users.
You need to ensure that Project only appears in Outlook to the marketing department users who
add the mailbox manually to their Outlook profile.
Which two cmdlets should you run? (Each correct answer presents part of the solution. Choose two.)
A.
Remove-MailboxPermission
B.
Set-Mailbox
C.
Remove-Mailbox
D.
Add-MailboxPermission
E.
New-Mailbox
Should be A and D?
“This example grants the user Mark Steele full access permission to Jeroen Cool’s mailbox and disables the auto-mapping feature.
Add-MailboxPermission -Identity JeroenC -User ‘Mark Steele’ -AccessRight FullAccess -InheritanceType All -Automapping $false”
A and D
Remove the permissions.
Add the permissions with the -automapping $false switch
A & D seems correct according with the two articles below:
https://technet.microsoft.com/en-us/library/hh529943(v=exchg.141).aspx
https://support.microsoft.com/en-us/kb/2646504