Forum Discussion
JoshB531
Jan 05, 2024Brass Contributor
Dynamic Distribution list members
Hi All I am trying to export members of a M365 Dynamic Distribution lists but when I try via PowerShell it will only show me the GUID. I am trying to get the display name but can't figure out how...
- Jan 06, 2024Try something like this:
Get-DynamicDistributionGroupMember DDGname | select Name, DisplayName, PrimarySmtpAddress, RecipientTypeDetails
VasilMichev
Jan 06, 2024MVP
Try something like this:
Get-DynamicDistributionGroupMember DDGname | select Name, DisplayName, PrimarySmtpAddress, RecipientTypeDetails
Get-DynamicDistributionGroupMember DDGname | select Name, DisplayName, PrimarySmtpAddress, RecipientTypeDetails
JoshB531
Jan 08, 2024Brass Contributor
Brilliant, thank you that works a treat