To view members of a generic email address loop, you can use the Exchange Management Shell or the Exchange Admin Center (EAC) depending on your environment. Here’s how you can do it:
Using Exchange Online PowerShell:
- Get the Address List: First, retrieve the address list using the command:
$AL = Get-AddressList -Identity <AddressListIdentity> - View Members: Then, use the following command to view the members:
This will return all recipients that match the recipient filters for the address list, including hidden recipients.Get-Recipient -ResultSize unlimited -RecipientPreviewFilter $AL.RecipientFilter | select Name,PrimarySmtpAddress,HiddenFromAddressListsEnabled
Using the EAC:
- Navigate to Organization > Address lists in the EAC.
- Select the address list you want to view and click Edit.
- Click on Preview recipients the address list includes to see the members.
Make sure that the address list is up to date before viewing its members. If it is not, you may need to update it first.
References: