425 words
2 min read

Create an Offline Address Book in Exchange Server 2013

By · Solutions Architect · Docker Captain · IBM Champion
Create an Offline Address Book in Exchange Server 2013

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”.

Create an Offline Address Book in Exchange Server 2013 - Step 1

Let’s see the existing address books using the command:

Terminal window
Get-OfflineAddressBook

Create an Offline Address Book in Exchange Server 2013 - Step 2

NOTE

Installing 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:

Terminal window
New-OfflineAddressBook -Name "VMKH Offline Address Book" -AddressLists "\Default Global Address List" -VirtualDirectories "us-boston-vmkh-002\OAB (Default Web Site)"

Create an Offline Address Book in Exchange Server 2013 - Step 3

To view existing address books and their main parameters, you can run the command:

Terminal window
Get-OfflineAddressBook | fl Name,Server, PublicFolderDistributionEnabled,WebDistributionEnabled,VirtualDirectories

Create an Offline Address Book in Exchange Server 2013 - Step 4

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.

Terminal window
Set-OfflineAddressBook -Identity "VMKH Offline Address Book" -IsDefault $true

Create an Offline Address Book in Exchange Server 2013 - Step 5

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.

Create an Offline Address Book in Exchange Server 2013 - Step 6

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

Create an Offline Address Book in Exchange Server 2013 - Step 7

In the Client Settings section, you must specify the new Exchange OAB.

Click on the “Browse” button.

Create an Offline Address Book in Exchange Server 2013 - Step 8

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

Create an Offline Address Book in Exchange Server 2013 - Step 9

The new Exchange OAB is listed.

NOTE

If you have multiple Exchange databases, you need to specify a new OAB for each database.

Click on the “Save” button.

Create an Offline Address Book in Exchange Server 2013 - Step 10


Vladimir Mikhalev

Docker Captain  ·  IBM Champion  ·  AWS Community Builder

The Verdict — production-tested analysis on YouTube.

Related Posts

Same category
  1. 1
    Recovering a Corrupt Exchange Database with Stellar Repair — Real-World Lab Test
    SysAdmin & 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.
  2. 2
    Distinctions Between Terminal, Command Line, Shell, and Prompt
    SysAdmin & IT Pro · Learn the differences between terminal, command line, shell, and prompt in Linux. A beginner-friendly guide to essential CLI concepts and tools.
  3. 3
    Install Ubuntu Server 22.04 LTS
    SysAdmin & 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.
  4. 4
    Install OTRS on Ubuntu Server
    SysAdmin & 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

Random
  1. 1
    Essential Commands for Listing Docker Containers
    DevOps & Cloud · Master Docker with essential commands for listing containers. This guide covers all you need to manage container states efficiently.
  2. 2
    Install Nextcloud Using Docker Compose
    Self-Hosting · Complete guide to installing Nextcloud with Docker Compose and Traefik. Learn to deploy your own secure file sharing and collaboration cloud with HTTPS.
  3. 3
    Install Ghost Using Docker Compose
    Self-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.
  4. 4
    Top 10 DevOps Tools for 2025 — Must-Have for Developers and Engineers
    DevOps & Cloud · Explore the top 10 DevOps tools for 2025 to optimize workflows, enhance security, and streamline CI/CD, GitOps, and Kubernetes.
Create an Offline Address Book in Exchange Server 2013
https://heyvaldemar.com/create-an-offline-address-book-in-exchange-server-2013/
Author
Vladimir Mikhalev
Published
2015-07-18
License
CC BY-NC-SA 4.0