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?

Exchange Online
Exchange Online
A Microsoft email and calendaring hosted service.
6,178 questions
Outlook | Windows | Classic Outlook for Windows | For business
Microsoft Security | Microsoft Graph
0 comments No comments
{count} votes

Accepted answer
  1. Vasil Michev 119.6K Reputation points MVP Volunteer Moderator
    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,766 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

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.