Applies to: Exchange Server 2013, Exchange Online

Topic Last Modified: 2012-10-11

After you create an address book policy (ABP), you must assign it to mailbox users. Users aren’t assigned a default ABP when their user account is created. If you don’t assign an ABP to a user, the global address list (GAL) for your entire organization will be accessible to the user through Outlook and Outlook Web App. To learn more, see Address Book Policies.

For additional management tasks related to ABPs, see Address Book Policy Procedures.

Interested in scenarios that use this procedure? See Scenario: Deploying Address Book Policies.

What do you need to know before you begin?

Tip:
Having problems? Ask for help in the Exchange forums. Visit the forums at: Exchange Server, Exchange Online, or Exchange Online Protection

What do you want to do?

Use the EAC to assign an ABP to a mailbox user

  1. Navigate to Recipients > Mailboxes.

  2. In the list view, select the user that you want to assign the policy to, and then click Edit Edit Icon.

  3. Click Mailbox features.

  4. In the Address book policy list, select the ABP that you want to apply to this user.

  5. Click Save.

Use the EAC to assign an ABP to multiple mailbox users

  1. Navigate to Recipients > Mailboxes.

  2. In the list view use the Ctrl key to select multiple users.

  3. In the details pane, click More options.

  4. Under Address Book Policy, click Update.

  5. In the Select Address Book Policy list, select the ABP that you want to apply to these users.

  6. Click Save.

Use the Shell to assign an ABP to mailbox users

This example assigns the ABP All Fabrikam to the existing mailbox user joe@fabrikam.com.

Copy Code
Set-Mailbox -Identity joe@fabrikam.com -AddressBookPolicy "All Fabrikam"

This example assigns the ABP ABP_EngineeringDepartment to all mailbox users whose CustomAttribute11 value contains “Engineering Department”.

Copy Code
Get-Mailbox -Filter {(CustomAttribute11 -like "Engineering Department")} | Set-Mailbox -AddressBookPolicy ABP_EngineeringDepartment

For detailed syntax and parameter information, see Set-Mailbox and Get-Mailbox.