Forum Discussion
Tenant wide way to stop new Office365 Groups appearing in Exchange Online GAL
- Mar 19, 2018
There has been some movement on this topic recently, with plans announced to clean up the clutter created by Groups/Teams in Outlook (https://twitter.com/Anne_Michels/status/971485479798415360). As for cleaning up the GAL, I haven't heard anything, but I would definitely appreciate an option similar to the Mailbox plans we have for regular mailboxes, where we can preconfigure some settings.
We too feel that the addition of groups to the GAL is creating a mess. We would like Microsoft to address this and prevent items from being shown in the GAL by default (much like they finally changed in Teams).
RSAdmin2315 It looks like this will be a major issue for millions of users worldwide using O365 and Exchange Online. Are there any updates on this or is Microsoft just ignoring the issue for now?
- Adm_MaikelS nullJan 20, 2021Copper Contributor
At my company student are creating around 250 groups a week.
We had the same issue with the groups showing up in the GAL
Also we found that some names like (management) were also used in the newly created groups, leading to confusing which one was the right mail address.
Now I have a script running every hour that gets all the groups and then it does the following (snippet):
$GALshownGroups = Get-UnifiedGroup -ResultSize Unlimited -Filter {CustomAttribute2 -eq $null}
foreach ($group in $GALshownGroups){
Set-Unifiedgroup -identity $group.PrimarySmtpAddress -CustomAttribute2 "GALhidden" -HiddenFromAddressListsEnabled $true
}The custom attribute is used to store if the group has been processed. Some groups are allowed to be visible so I only get the groups that have nothing filled there. That way I don't have to retrieve all the groups.
Would be a lot better ofcoz that HiddenFromAddressListEnabled can be set to a default value that you can change based on the companies policy
- RSAdmin2315Jan 20, 2021Copper Contributor
Thanks for the tip. Still a bit ridiculous that we're all "working around" this fundamental problem. Microsoft really needs to address this. The GAL has been a critical component of organization's for years -- allow it to devolve into a wasteland for IT administrators to chase clean-up of is disappointing.