Skip to content

Tag «automapping»

How to disable automapping Exchange 2010 for all mailbox

With exchange 2010 post SP1, there’s a new feature that cause lots of problem: AUTOMAPPING With the below script you can disable all automapped mailbox   # Get all mailboxes in the forest $Mailboxes = Get-Mailbox -ResultSize unlimited -IgnoreDefaultScope -OrganizationalUnit Other $ConfirmPreference = ‘None’ # Iterate over each mailbox foreach($Mailbox in $Mailboxes) { try { …