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 […]
Posts with the Exchange 2013 tag
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 […]
Exchange 2013 Certificate swap
After updating a certificate on Exchange 2013 I always remove the old certificate. This lead to the complete back-end not working properly anymore. A quick search on Bing concluded that Exchange does not bind the certificate to both the Default Web Site and the Exchange Back End, but purely to the Default Web Site. Manually […]
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 […]
Adding Exchange 2013 to PowerShell ISE
Adding support for Microsoft Exchange 2013 in PowerShell ISE: . ‘C:\Program Files\Microsoft\Exchange Server\V15\bin\RemoteExchange.ps1’ Connect-ExchangeServer -auto