Preconfigured load balancer for Exchange test environments

On Steve Goodman's website there is a VM available for free download that contains an almost fully configured layer-4 load balancer based on Ubuntu and HAProxy. It is very easy to set up and is ideal for test environments. Unfortunately, load balancing only works for the ClientAccess role and not for the Hub Transport role. Maybe ... Read more

Exchange 2010: Default settings for the receive connectors

Today, for the first time in a long time, I came across an Exchange server that was configured as an open relay. I actually thought that such configuration errors were a thing of the past. Apparently, however, some people are still making this nasty mistake, so here are the default settings of the receive connectors so that the settings can be corrected. In the default setting there are ... Read more

Exchange 2010: Move or delete system mailboxes

The following commands can be used to move or delete the system mailboxes: Move system mailboxes to another database: Get-Mailbox -Arbitration -Database QUELLDB | New-MoveRequest -TargetDatabase ZIELDB Disable system mailboxes Get-Mailbox -Arbitration -Database QUELLDB | Disable-Mailbox -Arbitration Delete system mailboxes and delete AD account: Get-Mailbox -Arbitration -Database QUELLDB | Remove-Mailbox -Arbitration -RemoveLastArbitrationMailboxAllowed To create the system mailboxes again, even if ... Read more

Exchange 2010: Outlook Web App shows HTTP error code 301/310

The following error occurs if redirects for OWA are not configured correctly: Error while testing during the first request to Outlook Web App. HTTP code: 301 The Internet Explorer shows little about this: As already mentioned, the cause is incorrect redirects in the IIS of the Exchange Server. The incorrect redirects may not be visible in the IIS Manager, ... Read more

Exchange 2010: Datacenter Switch-Over Troubleshooter

Microsoft has published a great tool that belongs in every emergency kit when a DAG is in operation across 2 data centers. The PowerPoint presentation uses simple questions and instructions to query the status of the data centers and issues the appropriate commands to perform a data center switch-over. Especially in the event of a complete data center failure, you are "easily" ... Read more

Exchange 2010: Enable or disable mailbox features for all mailboxes

To enable the mailbox features ActiveSync, Outlook Web App and Outlook Anywhere for all users, the following command can be used: get-mailbox -resultsize Unlimited | Set-CASMailbox -OWAEnabled $false -ActiveSyncEnabled $false -MAPIBlockOutlookRpcHttp $true To enable the mailbox features for all users again, the following command is sufficient: get-mailbox -resultsize Unlimited | Set-CASMailbox -OWAEnabled $true -ActiveSyncEnabled $true -MAPIBlockOutlookRpcHttp $false

Exchange 2010: Offline address book is not created / Update of address lists fails

When trying to update the Exchange address lists via Exchange Management Shell, you may receive this message: WARNING: The recipient "frankysweb.local/Microsoft Exchange System Objects/Schedule+ Schedule Information - Offline Address Book - First Administrative Group" is invalid and could not be updated. The message can occur for one or more address lists. The lists may have different names depending on the environment. This problem ... Read more

Exchange 2007, 2010, 2013: Setting up Windows Phone 8 for ActiveSync

To complete the setup of the Active Sync Clients, here are the instructions for Windows Phone 8. The instructions for the other smartphone operating systems can be found here: Android 4: https://www.frankysweb.de/?p=621 iOS, Android 2.X, Windows Phone 7, Windows Mobile: https://www.frankysweb.de/?p=302 But now only setting up Windows Phone 8, by the way, I used the Windows Phone SDK ... Read more