Exchange Powershell Exchange and Powershell Helps, Tips, and Tricks

Posts Tagged ‘get-recipient’

List Members of a Dynamic Distribution List

07.12.2010 · Posted in Exchange, GAL - Global Address List

This post was inspired by a post found on www.howexchangeworks.com But I have modified the commands some to get a better listing. $group = Get-DynamicDistributionGroup –identity “AllStaff” Get-Recipient –RecipientPreviewFilter $group.RecipientFilter | sort name | select name > d:\_temp\dlist_members.txt These changes will give you an alphabetical list of members, with names only in the list. I ...