Distribution list Export all group members option missing from enterpsie tenants and only available in lab /test tenant

O365 Buddy 96 Reputation points
2024-11-15T17:45:38.9733333+00:00

Distribution list Export all group members option missing from enterpsie tenants export Dl members

Microsoft Exchange Online
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce Jing-MSFT 6,025 Reputation points Microsoft Vendor
    2024-11-18T05:44:48.86+00:00

    Hi,@O365 Buddy

    Thanks for posting your question in the Microsoft Q&A forum.

    According to your description, some users do not have the Export group members option.

    Have you guys tried using PowerShell?

    1.Use PowerShell to get the members of the DL:

    Get-DistributionGroupMember -Identity "111" | Select-Object DisplayName
    
    

    2.If there is no problem with the above command, try exporting the DL members:

    $DL = Get-DistributionGroup -Identity "DL Name"
    $Members = Get-DistributionGroupMember -Identity $DL.Identity
    $Members | Select-Object DisplayName,PrimarySmtpAddress | Export-Csv -Path "C:\DL_Members.csv" -NoTypeInformation
    
    

    If you can export the member list using PowerShell, there is a problem with the EAC. Your answer is important in narrowing down the problem and I hope it is understood.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.