Forum Discussion
Stewart Davies
Aug 04, 2016Copper Contributor
Hide Group email from global address list
I have some o365 groups created though sds for classroom. The groups are private but they appear in the global address list. Is there a way to prevent this and hide them?
- Aug 04, 2016
Setwart you can do so via PowerShell: Set-UnifiedGroup -Id Group -HiddenFromAddressListsEnabled $True
Deleted
Feb 01, 2017I'm not terribly fluent in PowerShell, so please forgive me if the answer is obvious. It appears that this command applies to only a specific named Group. Can this be set as the default for the tenant?
Set-UnifiedGroup -Id Group -HiddenFromAddressListsEnabled $True
Jason Curtis
Jun 27, 2018Copper Contributor
Get-UnifiedGroup -ResultSize:Unlimited | Set-UnifiedGroup -HiddenFromAddressListsEnabled:$true
This will bulk hide all groups. Less daunting to unhide one or two if a customer calls.