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
cfiessinger
Microsoft
Aug 04, 2016Setwart you can do so via PowerShell: Set-UnifiedGroup -Id Group -HiddenFromAddressListsEnabled $True
PradzySRG
Jan 24, 2024Copper Contributor
Here is a good way to do this in bulk
export a list and put in the text file all the groups you want to hide and run this
gc .\gal.txt | Set-UnifiedGroup -HiddenFromAddressListsEnabled $true