Forum Discussion

Dino_Vo's avatar
Dino_Vo
Copper Contributor
Dec 14, 2021

SharePoint + Powershell + sensitivity labels

Hi,

is there anyway to find out which sensitivity labels are applied to specific SharePoint site (using Powershell)?

Kr,

Dino

  • Dino_Vo - You can use the following to get a list of Sensitivity Labels:
    Get-Label |Select Name, Guid

    Then use the following to get a list of SharePoint sites with Sensitivity Labels applied:
    $Sites = Get-SPOSite
    Foreach ($Site in $Sites)
    {
    Get-SPOSite -Identity $Site.Url | Select Url, SensitivityLabel
    }
  • Vee_Max's avatar
    Vee_Max
    Brass Contributor
    Dino_Vo - You can use the following to get a list of Sensitivity Labels:
    Get-Label |Select Name, Guid

    Then use the following to get a list of SharePoint sites with Sensitivity Labels applied:
    $Sites = Get-SPOSite
    Foreach ($Site in $Sites)
    {
    Get-SPOSite -Identity $Site.Url | Select Url, SensitivityLabel
    }
      • What if you query a specific site? Some properties might not be shown if you get all sites.

Resources