Forum Discussion
DavidCM66
Jan 13, 2023Copper Contributor
How to view detail info of the members of a dynamic distribution group in Exchange Online
Hi, I need help to view the members of a dynamic distribution group in Exchange Online using the Get-DynamicDistributionGroupMember Exchange PowerShell cmdlet.
I need to see more info than just the Name and the RecipientType as I'm getting the Object ID in some results instead of readable names when running it as Get-DynamicDistributionGroupMember -Identity <group name>!!!!!
It would be helpful to also see the email for example.
Thanks
- As mentioned in the thread over at Q&A, you simply need to 'select' the properties:
Get-DynamicDistributionGroupMember DDG | select Name,DisplayName,PrimarySmtpAddress,RecipientTypeDetails
- As mentioned in the thread over at Q&A, you simply need to 'select' the properties:
Get-DynamicDistributionGroupMember DDG | select Name,DisplayName,PrimarySmtpAddress,RecipientTypeDetails- DavidCM66Copper ContributorThanks Vasil. I wasn't inluiding PrimarySmtpAddress in the Select.
Now I get the result I was looking for.