Exchange Server on-premises, is there a solution that prohibits users to expand members of distribution groups in the address book?

Jayden_CW 0 Reputation points
2024-09-02T07:45:32.0933333+00:00

Exchange Server deployed on-premises, is there a solution that prohibits users to expand the members of distribution groups in the address book? Currently tried to set it in the AD group object, with powershell command Set-ADGroup -Identity "groupname" -replace @{hideDLMembership=$false};

Once set, in OWA and the Windows outlook client, you can disable expansion and can't view group members. However, if you use the MAC client, you can still access and view the group members normally.

Is there a feasible solution for the on-premises Exchange Server system to prevent users from viewing and expanding distribution group members? Thank you

Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,661 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Mike Hu-MSFT 4,135 Reputation points Microsoft Vendor
    2024-09-03T07:09:53.4933333+00:00

    Hi,

    Welcome to the Microsoft Q&A platform!

    You can try to use the Add-ADPermission cmdlet to set permissions.

    For example, to prevent a specific user or group from expanding a distribution group:

     Add-ADPermission -Identity "DistributionGroupName" -User "UserOrGroupName" -Deny -ExtendedRights "Read Members" 
    

    More details about this cmdlet you can refer to:Add-ADPermission

    Please feel free to contact me for any updates. And if this helps, don't forget to mark it as an answer!


  2. Andy David - MVP 149K Reputation points MVP
    2024-09-03T10:30:39.0433333+00:00

    I'm not aware of any way to prevent that.

    Hiding the members is not the same as preventing expansion.

    The only way to prevent users from expansion would be to use a dynamic distrib group.


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.