Update the 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 update the 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.
NOTETo learn how to create offline address books in Exchange Server 2013, read my guide: Create an Offline Address Book in Exchange Server 2013.
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 schedule for updating address books using the command:
Get-OfflineAddressBook | fl Name,Schedule
Now let’s check when a specific OAB was last updated using the command:
Get-OfflineAddressBook "VMKH Offline Address Book" | fl Name,LastTouch *NOTEThis manual uses the “VMKH Offline Address Book” as the main offline address book.

The following commands must be run on all Exchange servers.
Let’s update the global address list using the command:
Get-GlobalAddressList | Update-GlobalAddressList
Update the Exchange OAB using the command:
Get-OfflineAddressBook | Update-OfflineAddressBook
You can update a specific offline address book using the command:
Update-OfflineAddressBook -Identity "VMKH Offline Address Book"NOTEThis manual uses the “VMKH Offline Address Book” as the main offline address book.

If you have Exchange Server 2010 installed, then to force the update of the offline address book, you will need to run one more command:
Get-ClientAccessServer | Update-FileDistributionServiceThe 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 and Configure DHCP Server on Windows Server 2012 R2SysAdmin & IT Pro · Step-by-step guide to install and configure a DHCP server on Windows Server 2012 R2. Learn to assign IPs, set exclusions, and reserve addresses with ease.
- 2Install Homebox Using Docker ComposeSelf-Hosting · Step-by-step guide to install Homebox with Docker Compose and Traefik. Secure your home inventory system with HTTPS using Let's Encrypt.
- 3Install Bitwarden on Ubuntu Server 20.04 LTSSelf-Hosting · Step-by-step guide to install Bitwarden on Ubuntu Server 20.04 LTS using Docker and Let's Encrypt. Secure your passwords with this open-source solution.
- 4Install OTRS Using Docker ComposeSelf-Hosting · Learn how to deploy OTRS Helpdesk with Docker Compose, secured by Traefik and Let's Encrypt. Step-by-step guide for Ubuntu-based self-hosted ticketing.