create sensitive label

Iron Contributor

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 

 

 
 

 

2 Replies

 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

@Vasil Michev