Forum Discussion
adambean
May 30, 2019Copper Contributor
Groups disappeared in Outlook?
Hi all, As of late, my o365 groups are no longer visible in Outlook. If I use o365 via the web, they are accessible without issue. No one else in any of my teams are experiencing this issue. ...
VinhQNguyen
Aug 17, 2021Copper Contributor
This is an old thread but I just struggled with this and ended up contacting Microsoft Support after nothing I tried worked. It turns out that there is an attribute that controls whether or not the group is hidden from Exchange Clients. This sequence of PowerShell commands fixed it for me for this specific group. You will have to set each group's HiddenFromExchangeClientsEnabled attribute to false to see them all.
PS C:\> Install-Module -Name ExchangeOnlineManagement
PS C:\> Import-Module ExchangeOnlineManagement
PS C:\> Connect-ExchangeOnline -Credential $UserCredential
PS C:\> Get-UnifiedGroup -Identity "Support" | fl HiddenFromExchangeClientsEnabled
HiddenFromExchangeClientsEnabled : True
PS C:\> Set-UnifiedGroup -Identity "Support" -HiddenFromExchangeClientsEnabled:$false
PS C:\> Get-UnifiedGroup -Identity "Support" | fl HiddenFromExchangeClientsEnabled
HiddenFromExchangeClientsEnabled : False
PS C:\> Install-Module -Name ExchangeOnlineManagement
PS C:\> Import-Module ExchangeOnlineManagement
PS C:\> Connect-ExchangeOnline -Credential $UserCredential
PS C:\> Get-UnifiedGroup -Identity "Support" | fl HiddenFromExchangeClientsEnabled
HiddenFromExchangeClientsEnabled : True
PS C:\> Set-UnifiedGroup -Identity "Support" -HiddenFromExchangeClientsEnabled:$false
PS C:\> Get-UnifiedGroup -Identity "Support" | fl HiddenFromExchangeClientsEnabled
HiddenFromExchangeClientsEnabled : False
ericbyrd
Sep 01, 2022Copper Contributor
This was the ticket here. Thanks, VinhQNguyen!