Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2

Topic Last Modified: 2011-03-19

In Exchange, you can view the members of an e-mail address policy by using the Edit E-Mail Address Policy wizard or New E-Mail Address Policy wizard in the EMC. However, if you used the Shell to create the policy, you can't use the EMC to view the members. Instead, you must use the Get-Recipient cmdlet in the Shell. For more information about how to use the EMC to view the members of an e-mail address policy, see Edit an E-Mail Address Policy.

Looking for other management tasks related to e-mail address policies? Check out Managing E-Mail Address Policies.

Use the Shell to view members of an e-mail address policy

You need to be assigned permissions before you can perform this procedure. To see what permissions you need, see the "E-mail address policies" entry and the "Recipient Provisioning Permissions" section in the Mailbox Permissions topic.

  1. This example finds the GUID of an e-mail address policy Tokyo Division.

    Copy Code
    Get-EmailAddressPolicy -Identity "Tokyo Division" | fl GUID
    
  2. This example lists the members of an e-mail address policy by using the GUID of the e-mail address policy Tokyo Division.

    Copy Code
    Get-Recipient -Filter {PoliciesIncluded -like '{82025f12-8000-4d5e-8059-c052f9355125}*'}
    

For detailed syntax and parameter information, see Get-Recipient.