06-04-2018 03:07 AM
Hi All,
A query regarding the groups created either from Teams, Planner or from Power BI can be disabled from Exchange Clients using the following commands :
Set-UnifiedGroup -Identity $_.Identity -HiddenFromExchangeClientsEnabled
But If you want to disable the same it comes an error.
Please need some assistance in this query!!
06-04-2018 04:15 AM
06-04-2018 10:05 AM
That's because it's a switch parameter. Try this instead:
Set-UnifiedGroup SharePoint -HiddenFromExchangeClientsEnabled:$false
06-05-2018 09:55 PM
06-05-2018 09:58 PM
06-05-2018 11:43 PM - edited 06-05-2018 11:44 PM
And I told you how to solve the error...
In case it wasn't clear - you need to remove the space between -HiddenFromExchangeClientsEnabled and $False, and replace it with a semicolon -HiddenFromExchangeClientsEnabled:$False
06-06-2018 11:06 AM
Absolutely Correct! It's a simple parameter which i was missing Thank you @Vasil Michev