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
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