Dynamic distribution groups is calculated each time a message is sent to the group, based on the filters and conditions that you define. When an email message is sent to a dynamic distribution group, it’s delivered to all recipients in the organization that match the criteria defined for that group.
Now you are worried how to export members of these Distribution list to csv files.
PowerShell is the way...!
$FTE = Get-DynamicDistributionGroup "I-Like distlist"
Get-Recipient -RecipientPreviewFilter $FTE.recipientFilter -ResultSize unlimited >C:\users\a2361ag\Desktop\ILIKE.txt
Comments
Post a Comment