Dec 31 2020 08:04 AM - edited Dec 31 2020 08:13 AM
I tried to create a sensitive label under the "Security & Compliance Center->Classification->Sensitivity Labels". The "Groups & Sites" checkbox is disabled. How can I enable this check box?
Thanks in advance,
Peter
Dec 31 2020 08:22 AM
Have you followed the steps to enable support for "containers"? https://docs.microsoft.com/en-us/microsoft-365/compliance/sensitivity-labels-teams-groups-sites?view...
Dec 31 2020 09:42 AM - edited Dec 31 2020 09:44 AM
Thanks for your help. I have followed the article, execute the following script successfully. But the "Groups & Sites" checkbox still disabled.
Install-module AzureADPreview -Verbose
Import-Module AzureADPreview
Connect-AzureAD
$Setting = Get-AzureADDirectorySetting -Id (Get-AzureADDirectorySetting | where -Property DisplayName -Value "Group.Unified" -EQ).id
$Setting.Values
Set-AzureADDirectorySetting -Id $Setting.Id -DirectorySetting $Setting
Import-Module ExchangeOnlineManagement
Connect-IPPSSession -UserPrincipalName
Execute-AzureAdLabelSync
Thanks, Peter