Is it possible to hide an Office 365 Groups from the GAL but not the Exchange Client

Maddi 26 Reputation points
2022-05-09T07:41:25.567+00:00

Is it possible to hide groups from a Global Address Book, but still allow users to browse for them in 'Groups' and request to join.

I have tried setting HiddenFromAddressListsEnabled to true, but it hides it from 'Groups' as well.

If it's not possible, is there some way to filter specific users from the Global Address Book?

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
10,646 questions
Outlook Management
Outlook Management
Outlook: A family of Microsoft email and calendar products.Management: The act or process of organizing, handling, directing or controlling something.
4,901 questions
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,190 questions
0 comments No comments
{count} votes

Accepted answer
  1. Vasil Michev 95,666 Reputation points MVP
    2022-05-09T07:55:15.38+00:00

    Those are two separate parameters and you can use them independently:

    Get-UnifiedGroup | ? {$_.HiddenFromAddressListsEnabled} | select Name,HiddenFromExchangeClientsEnabled,HiddenFromAddressListsEnabled
    
    Name                                              HiddenFromExchangeClientsEnabled HiddenFromAddressListsEnabled
    ----                                              -------------------------------- -----------------------------
    Team688_1fc47b5e-b6ca-44b4-ae1b-318fe0846d7a                                 False                          True
    Office365_f961c9ab-4de8-4751-8172-fdd2efad082e                                True                          True
    

    However, setting any of these to True will result in the group not being visible/exposed in Outlook, so neither is appropriate for your scenario. If you want users to browse for Groups in Outlook, you need them visible, as in not hidden in the GAL.

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. T. Kujala 8,706 Reputation points
    2022-05-09T07:57:57.353+00:00

    Hi @Maddi ,

    You can hide groups from the GAL but users can still discover groups.

    https://outlook.office.com/mail/

    200107-groups.png

    0 comments No comments