Address book policies can be used to present customized address books to users. This can be useful if you want to include several companies in an Exchange organization, but do not want users from company A to be able to see all users from company B. Address book policies and customized address books can also be useful for multiple locations.
Nehmen wir also mal an wir haben 2 Firmen aber nur einen Exchange Server. Die Firmen heißen „FrankysWeb“ und „WebFranky“, jede Firma hat Benutzer und Verteilerlisten:
Without address book guidelines, the address book looks something like this:
Each user can see all mailboxes and also view further details, such as photo, address, telephone number, if the information is maintained, for security or for reasons of clarity, separate address books can now be generated.
Um die Adresslisten zu Trennen werden zuerst Adresslisten für die beiden Firmen angelegt. in diesem Beispiel lege ich also 6 Adresslisten an (FW Benutzer, FW Verteiler, FW Raeume, WF Benutzer, WF Raueme und WF Verteiler). Die Adresslisten werden wie in dem Screenshot zu sehen auf die jeweiligen OUs gefiltert. Hier das Beispiel für die Liste „FW Benutzer“:
and here for WF distributors:
Additional lists can of course be created as required.
Next, a new global address list is created, but this only works with the shell:
New-GlobalAddressList "FW GAL" -RecipientContainer "frankysweb.local/FrankysWeb" -IncludedRecipients AllRecipients New-GlobalAddressList "WF GAL" -RecipientContainer "frankysweb.local/WebFranky"-IncludedRecipients AllRecipients
Now the offline address books are still missing:
New-OfflineAddressBook "FW OAB" -AddressLists "FW GAL" New-OfflineAddressBook "WF OAB" -AddressLists "WF GAL"
The address book policy can now be created. The policy is assigned the address lists that it is to contain.
New-AddressBookPolicy -Name "FW ABP" -AddressLists "FW Benutzer","FW Verteiler" -OfflineAddressBook "\FW OAB" -GlobalAddressList "\FW GAL" -RoomList "\FW Raeume" New-AddressBookPolicy -Name "WF ABP" -AddressLists "WF Benutzer","WF Verteiler" -OfflineAddressBook "\WF OAB" -GlobalAddressList "\WF GAL" -RoomList "\WF Raeume"
and last but not least, only the address guidelines need to be assigned to the mailboxes.
Get-Mailbox -OrganizationalUnit "frankysweb.local/Frankysweb" | Set-Mailbox -AddressBookPolicy "FW ABP" Get-Mailbox -OrganizationalUnit "frankysweb.local/WebFranky" | Set-Mailbox -AddressBookPolicy "WF ABP"
Now we have two separate companies that only see their own address lists:
In this way, you can also bring order to the address books, for example if there are several locations. You could configure the address books so that users only see mailboxes and distribution lists at their location and the mailboxes at the head office, but not address books from other locations.