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.

The Verdict
Inconvenient truths about shipping in the AI era
Container security, platform engineering, and the agentic shift — tested in production, argued without the hype. The verdict reaches your inbox the moment there's one worth sending.
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
- 1Install Joomla Using Docker ComposeSelf-Hosting · Learn how to install Joomla using Docker Compose with Traefik and Let's Encrypt. Step-by-step guide to self-host your CMS securely and efficiently.
- 2Install Rocket.Chat Using Docker ComposeSelf-Hosting · Step-by-step guide to install Rocket.Chat on Ubuntu Server using Docker Compose and Traefik with Let's Encrypt SSL. Ideal for secure team communication..
- 3Install Ollama Using Docker ComposeAI & MLOps · Deploy Ollama locally with Docker Compose and Traefik. Step-by-step guide for setting up LLMs with HTTPS, domain routing, and secure container orchestration.
- 4Configure Amazon S3 for Rocket.Chat File SharingDevOps & Cloud · Step-by-step guide to integrate Amazon S3 with Rocket.Chat for secure file sharing. Learn bucket setup, IAM policies, and S3 configuration best practices.