Forum Discussion
Anthony-123
Apr 25, 2022Iron Contributor
How to ensure Teams groups appear in Outlook?
From what I've read, a group created with Teams should appear in Outlook. That's not the case for me. When I created the team last week, it would appear / disappear from different devices and apps w...
- Apr 25, 2022A while back, Microsoft introduced a change to "hide" all Teams-enabled groups form Outlook. Apparently, to reduce confusion. The fix is to toggle the -HiddenFromExchangeClientsEnabled property via PowerShell:
Set-UnifiedGroup Team688 -HideFromExchangeClients:$false
VasilMichev
Apr 25, 2022MVP
A while back, Microsoft introduced a change to "hide" all Teams-enabled groups form Outlook. Apparently, to reduce confusion. The fix is to toggle the -HiddenFromExchangeClientsEnabled property via PowerShell:
Set-UnifiedGroup Team688 -HideFromExchangeClients:$false
Set-UnifiedGroup Team688 -HideFromExchangeClients:$false
- rdavis61Sep 07, 2023Copper Contributor
VasilMichev Since I do not want Team groups to show up in Outlook, would I use this command?
Set-UnifiedGroup Team688 -HideFromExchangeClients:$true
I'm namely speaking of the list of all Teams appearing in Groups in Outlook.
- Anthony-123Apr 25, 2022Iron ContributorThank you! I also found this article to back up what you've said https://answers.microsoft.com/en-us/outlook_com/forum/all/some-teams-not-showing-up-in-groups-within-outlook/60dec20a-3e33-4a62-b38d-ccb2e23171ae
A minor tweak, I had to use the syntax on that page which included -Identity.
Set-UnifiedGroup -Identity "<Group Name>" -HiddenFromExchangeClientsEnabled:$false