How to see detail info about Exchange Dynamic Groups Members

David Cervera 5 Reputation points
2023-01-13T09:16:47.07+00:00

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 more helpful to see also the email for example.

Thanks

Microsoft Exchange Online
Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,342 questions
{count} vote

1 answer

Sort by: Most helpful
  1. Vasil Michev 99,351 Reputation points MVP
    2023-01-13T09:24:24.33+00:00

    The cmdlet returns the full "ReducedRecipient" object, so you get a lot more properties than just Name and RecipientType, you simply need to "instruct" PowerShell to display them. Here's an example:

    Get-DynamicDistributionGroupMember DDG | select Name,DisplayName,PrimarySmtpAddress,RecipientTypeDetails

    To get the full set of properties returned, use the Get-Member cmdlet:

    Get-DynamicDistributionGroupMember DDG -ResultSize 1 | gm

    0 comments No comments