Offline address book (OAB) generation process takes place on the OAB generation server which contains the "Organizational Inbox" - in order to find this you can run the following:
You can view all of the current Global Address Books using the "Get-OfflineAddressBook" cmdlet:Get-Mailbox -Arbitration | where {$_.PersistedCapabilities -like "*oab*"} | ft name,servername
Get-OfflineAddressBookIn order to then move this to another Mailbox server you can use the Move-OfflineAddressBook cmdlet:
Move-OfflineAddressBook -Identity "My Offline Address Book" -Server "mbox-server-2"
You can create a new OAB as follows:
You can also manually invoke an update of the Offline Address Books:New-OfflineAddressBook -Name OAB-FAB -AddressLists "Test Global Address List"
And finally you can add an additional Organizational Inbox on a mailbox server for added redundancy:Update-OfflineAddressBook -Identity "Default Offline Address Book"
New-Mailbox -Arbitration -Name "Test OAB" -Database TestDB -UserPrincipalName [email protected] –DisplayName “Test OAB Mailbox”
They are compressed and then stored in a share, you also have the ability to designate who has access to them and how they are distributed.Set-Mailbox -Arbitration offlineaddressbook -OABGen $true // enables OAB generation on the inbox
Also remembering to update the address book from Outlook is important as well!
Address List
Since there was a brief reference to address lists during the creation steps of the OAB above I thought I would cover a brief bit about address lists.
Address lists are a collection of recipients and other objects such as users, public folders and so on. The above example is taken from TechNet using the Exchange Management Shell (alhough it can also be performed from ECP):
New-AddressList -Name MyAddressList -RecipientFilter {((RecipientType -eq 'UserMailbox') -and ((StateOrProvince -eq 'Washington') -or (StateOrProvince -eq 'Oregon')))}In order to update an address list we can make use of the Update-AddressList cmdlet:
Update-GlobalAddressList -Identity "Default Global Address List"** It might also be worth noting that if a standard user would like to create an address list they must be part of the "Organization Management" group. **
0 comments:
Post a Comment