Forum Discussion
EDU_ictGeek
Jan 26, 2022Brass Contributor
Outlook 365 desktop App and Joining Groups that you already own
This is a bit of weird one: we have a number of groups where the owner wants to be able to control the calendar using Outlook desktop app on Win10. I have set the following: -HiddenFromExchangeC...
EDU_ictGeek
Jan 26, 2022Brass Contributor
In case anyone is interested, i had found on an old microsoft forum (i searched for HiddenFromExchange pshell) that:
HiddenFromExchangeClientsEnabled:$False
is not enough and that
HiddenFromExchangeClients:$False
was also needed.
I'm still a little uncertain on why they are different, but one alone did not work, i had t use both.
Connect-ExchangeOnline -UserPrincipalName Email address removed
Connect-MicrosoftTeams -verbose
Get-Team -MailNickName "TeamDisplayName"
Set-UnifiedGroup -Identity "TeamDisplayName" -HiddenFromExchangeClientsEnabled:$False
Set-UnifiedGroup -Identity "TeamDisplayName" -HiddenFromExchangeClients:$False