Forum Discussion
How do i change Properties of teams using powershell?
- Jul 17, 2020
Set-UnifiedGroup is part of the Exchange Module.
https://docs.microsoft.com/en-us/powershell/module/exchange/set-unifiedgroup?view=exchange-ps
You can install this by running:
Install-Module -Name ExchangeOnlineManagementConnect by running:
Connect-ExchangeOnlineBe aware that for managing all aspects of Teams you might need 4 PowerShell modules.
1. AzureAD Module
2. Exchange online module
3. SharePoint module
4. Teams Module
Thanks again for your reply!
It took some time for me to figure out but it finally worked.
I used the bypass you suggested and was able to use the connect command which led me to Office 365 login. I entered my credentials (I'm also an admin on the tenant).
After, I tried to use this command but didn't work unfortunatly:
Set-UnifiedGroup Team name -HiddenFromExchangeClientsEnabled:$false
I'm guessing there's something Powershell needs before I'll be able to use this command as Powershell doesn't recognize this command.
Set-UnifiedGroup is part of the Exchange Module.
https://docs.microsoft.com/en-us/powershell/module/exchange/set-unifiedgroup?view=exchange-ps
You can install this by running:
Install-Module -Name ExchangeOnlineManagement
Connect by running:
Connect-ExchangeOnline
Be aware that for managing all aspects of Teams you might need 4 PowerShell modules.
1. AzureAD Module
2. Exchange online module
3. SharePoint module
4. Teams Module
- wo_knJul 17, 2020Brass Contributor
Thanks a lot!
I've just done your last 2 commands and I was able to use the command
Set-UnifiedGroup Teamname -HiddenFromExchangeClientsEnabled:$false
Instead of the Teamname I used the group e-mail which I got out of the office admincenter.
I was able to enter the command and some moments later, the Office-group was visible in Outlook!
Thank you so much for taking time to answer this!
