Quantcast
Channel: Practical 365
Viewing all articles
Browse latest Browse all 515

Exchange Server 2010 to 2013 Migration – Reviewing Offline Address Book Configuration

$
0
0

Before installing your first Exchange 2013 server during a migration project you must first review your offline address book configuration.

The issue, as explained in detail by Exchange MVP Andrew Higginbotham here, and mentioned by Microsoft in the release notes and a subsequent blog post, is that Exchange Server 2013 will create a new default offline address book for the organization.

Any mailbox users who do not have an existing OAB assigned to their mailbox directly, or to the mailbox database that they are located on, will download the entire OAB from the new default OAB that Exchange 2013 creates. In organizations with a large OAB or distributed network environment this is obviously not ideal.

The solution is to review your existing OAB configuration. You can check the OAB configured on mailbox databases with a single PowerShell command.

[PS] C:\>Get-MailboxDatabase | select name,offlineaddressbook | sort name
Name          OfflineAddressBook
----          ------------------
MB-BR-01      \Default Offline Address Book
MB-BR-02
MB-HO-01      \Default Offline Address Book
MB-HO-02
MB-HO-04
MB-HO-Archive

As you can see only two of the six databases in the Exchange Server Pro organization have an offline address book configured.

To avoid mailbox users on the other four databases re-downloading the entire OAB we can assign an OAB to the databases. Again this can be performed with a single PowerShell command in many cases.

[PS] C:\>Get-MailboxDatabase | Where {$_.OfflineAddressBook -eq $null} | Set-MailboxDatabase -OfflineAddressBook "\Default Offline Address Book"

Alternatively you can assign the OAB to a database using the Exchange Management Console by opening the mailbox database properties and selecting the Client Settings tab.

exchange-2010-2013-migration-offline-address-book

This is an important configuration item to review during a migration project and should not be overlooked.

In the next part of this article series we’ll look at server sizing guidance for Exchange Server 2013.


This article Exchange Server 2010 to 2013 Migration – Reviewing Offline Address Book Configuration is © 2014 ExchangeServerPro.com

Get more Exchange Server tips at ExchangeServerPro.com


Viewing all articles
Browse latest Browse all 515

Trending Articles