Forum Discussion
Office 365 groups not visible in Outlook client
- DeletedOct 19, 2018
It seems that your groups are hidden by default to show them in outlook you have to change it via Powershell.
Set-UnifiedGroup -Identity "Legal Department" -HiddenFromAddressListsEnabled $false
more info here https://docs.microsoft.com/en-us/office365/enterprise/manage-office-365-groups-with-powershell
The correct answer on this would be running the script below:
Set-UnifiedGroup -Identity "group" -HiddenFromExchangeClientsEnabled:$false
which is answered by Mike McLean (OFFICE) Mike
Raizel Set-UnifiedGroup : The term 'Set-UnifiedGroup' is not recognized as the name of a cmdlet, function, script file, or
operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try
again.
- Open_DoorsJun 29, 2020Copper Contributor
Deleted @Raizel Same thing.
Set-UnifiedGroup : The term 'Set-UnifiedGroup' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
- Open_DoorsJun 29, 2020Copper Contributor
It must be done in Exchange Powershell, not Azure.
https://docs.microsoft.com/en-us/powershell/exchange/connect-to-exchange-online-powershell?view=exchange-ps
I used:
Set-UnifiedGroup -HiddenFromAddressListsEnabled $false
...as others noted. It requested IDENTITY and I only had three groups to update, I did each one.
Groups now showing in OWA.
Yay - thanks for thread.