Script to remove AutoMapping from select or all users in Exchange

An adeptation of the script by Matthias R Jessen. # Get all mailboxes in the forest $Mailboxes = Get-User -OrganizationalUnit “Employees” | Get-Mailbox -ResultSize unlimited -IgnoreDefaultScope $ConfirmPreference = “None” # Iterate over each mailbox foreach($Mailbox in $Mailboxes) {     try     {         # Try to run the example fix against the current $Mailbox         […]

Exchange 2013 and Lync 2010 Auto-attendant not working

After running an upgrade from Exchange 2010 to 2013 I began running into the issue that the voicemail for users was no longer working as intended. Several frustrating attempts to resolve this found a severe lack of documentation for this particular state of deployment. After a long, extensive search I came across a good post […]

Migration from Exchange 2010 to 2013

Running migrations of Exchange is always a slow process, especially if you run into problems or hickups along the way. I’ve done my fare share of migrations and know a few basics to being with outright; Always migrate to a different server. Never do an inplace upgrade. I don’t even know if this is possible […]