The Global Address List (GAL) provides users with access to all organizational email addresses. When cached mode is enabled, the Offline Address Book (OAB) ensures GAL access even when disconnected.
The GAL deployment is automatically handled when Cached Exchange Mode is enabled, but you need to configure the OAB distribution settings on the Exchange server.
On your Exchange server, configure the OAB virtual directory:
# Configure OAB virtual directory for Outlook compatibility
Set-OabVirtualDirectory -Identity "Default Web Site\oab (Default Web Site)" -ExternalUrl "https://mail.yourdomain.com/oab" -InternalUrl "https://mail.yourdomain.com/oab"
# Ensure OAB generation is working
Get-OfflineAddressBook | Update-OfflineAddressBook
# Check OAB distribution points
Get-OabVirtualDirectory | Format-List Name,ExternalUrl,InternalUrl
For organizations with multiple Exchange servers, ensure OAB replication is working:
# Force OAB generation and distribution
Update-OfflineAddressBook -Identity "Default Offline Address Book"
# Check OAB generation status
Get-OfflineAddressBook | Format-List Name,*Status*
In the GPO, you can control OAB download behavior under Account Settings > Exchange:
"Download Offline Address Book"
- Set to: Enabled
- This ensures the GAL is available offline
Verification: In Outlook, go to File > Account Settings > Download Address Book to verify the OAB is downloading correctly. Check the status in the progress dialog.
Warning: Large organizations should schedule OAB generation during off-hours as it can be resource-intensive. Monitor Exchange server performance during initial OAB downloads.