Forum Discussion
px091
Dec 31, 2020Iron Contributor
create sensitive label
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
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=o365-worldwide#how-to-enable-sensitivity-labels-for-containers-and-synchronize-labels
- px091Iron Contributor
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