Forum Discussion
noushin_yazdani
Sep 02, 2021Copper Contributor
how do I make created Team group visible in outlook?
I created a Team in my team app , however there is no corresponding Group in my outlook, why is it so?
pvanberlo
Sep 02, 2021Steel Contributor
Some time ago Microsoft changed the default from showing teams in Outlook to not showing them. You can change this using Exchange Online PowerShell by running the Set-UnifiedGroup cmdlet with the HiddenFromExchangeClientsEnabled parameter set to $false:
Set-UnifiedGroup -Identity SomeTeam -HiddenFromExchangeClientsEnabled:$false
Set-UnifiedGroup -Identity SomeTeam -HiddenFromExchangeClientsEnabled:$false
noushin_yazdani
Sep 02, 2021Copper Contributor
thanks, should I be adminpvanberlo
- pvanberloSep 02, 2021Steel ContributorYes. You should either have an appropriate admin role or specific permissions set in Exchange Online.