MS Exchange getting members of Dynamic Groups

Here is the simple powershell cmdlet for getting members of Dynamic groups:

# get Group first from get command

$a = Get-DynamicDistributionGroup “+All-BT”

#expand groupmembership

Get-Recipient –RecipientPreviewFilter $a.RecipientFilter

Leave a comment