Create an Offline Address Book in Exchange Server 2013
By Vladimir Mikhalev · Solutions Architect · Docker Captain · IBM Champion
This article is for those looking for a detailed and clear guide on how to create an offline address book in Exchange Server 2013.
The offline address book is designed so that Microsoft Outlook users can view the address book even when they are not connected to the Exchange server. In addition, offline address books can help reduce the load on Exchange servers.
Click “Start”, point to “Exchange” in the search bar, then right-click on “Exchange Management Shell” and select “Run as administrator”.

Let’s see the existing address books using the command:
Get-OfflineAddressBook
NOTEInstalling the Mailbox server role creates a default offline address book named “Default Offline Address Book”.
Let’s create a new offline address book using the command:
New-OfflineAddressBook -Name "VMKH Offline Address Book" -AddressLists "\Default Global Address List" -VirtualDirectories "us-boston-vmkh-002\OAB (Default Web Site)"
To view existing address books and their main parameters, you can run the command:
Get-OfflineAddressBook | fl Name,Server, PublicFolderDistributionEnabled,WebDistributionEnabled,VirtualDirectories
The new offline address book was created successfully, and you can then set it as the default offline address book. Thus, it will be associated with all created mailbox databases.
Set-OfflineAddressBook -Identity "VMKH Offline Address Book" -IsDefault $true
Now we go to the server with Exchange Server 2013 installed and go to the Exchange Admin Center, which is located at the link https://us-boston-vmkh-002/ecp, where us-boston-vmkh-002 is the name of my Exchange server.
Specify the username and password to enter the “Exchange Administration Center” and click the “Sign in” button.

Go to the “Servers” section, select the “Databases” subsection, then select the database and double-click on it with the left mouse button.

In the Client Settings section, you must specify the new Exchange OAB.
Click on the “Browse” button.

Select the new Exchange OAB and click on the “OK” button.

The new Exchange OAB is listed.
NOTEIf you have multiple Exchange databases, you need to specify a new OAB for each database.
Click on the “Save” button.

Related Posts
- 1Recovering a Corrupt Exchange Database with Stellar Repair — Real-World Lab TestSysAdmin & IT Pro · We deliberately broke an Exchange 2019 server to see if Stellar Repair for Exchange could recover a dirty-shutdown EDB file. Step-by-step recovery process, lab setup, and lessons learned.
- 2Distinctions Between Terminal, Command Line, Shell, and PromptSysAdmin & IT Pro · Learn the differences between terminal, command line, shell, and prompt in Linux. A beginner-friendly guide to essential CLI concepts and tools.
- 3Install Ubuntu Server 22.04 LTSSysAdmin & IT Pro · Step-by-step guide to install Ubuntu Server 22.04 LTS. Covers language, disk setup, OpenSSH, user creation, and system configuration for beginners.
- 4Install OTRS on Ubuntu ServerSysAdmin & IT Pro · Comprehensive guide to installing OTRS Community Edition on Ubuntu Server. Learn to configure PostgreSQL, Apache, SSL with Let's Encrypt, and launch OTRS securely.
Random Posts
- 1Essential Commands for Listing Docker ContainersDevOps & Cloud · Master Docker with essential commands for listing containers. This guide covers all you need to manage container states efficiently.
- 2Install Nextcloud Using Docker ComposeSelf-Hosting · Complete guide to installing Nextcloud with Docker Compose and Traefik. Learn to deploy your own secure file sharing and collaboration cloud with HTTPS.
- 3Install Ghost Using Docker ComposeSelf-Hosting · Install Ghost with Docker Compose and Traefik, complete with Let's Encrypt SSL. Launch a secure, self-hosted blogging platform in just a few steps.
- 4Top 10 DevOps Tools for 2025 — Must-Have for Developers and EngineersDevOps & Cloud · Explore the top 10 DevOps tools for 2025 to optimize workflows, enhance security, and streamline CI/CD, GitOps, and Kubernetes.