Apply Tags to SP site

Anandhan Sathyanarayanan 136 Reputation points
2021-12-31T06:36:39.64+00:00

How to assign tags to SP sites either through UI (or) custom scripts to classify the sites for SharePoint administration & maintenance?

SharePoint Server
SharePoint Server
A family of Microsoft on-premises document management and storage systems.
2,227 questions
SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
9,682 questions
SharePoint Server Development
SharePoint Server Development
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Development: The process of researching, productizing, and refining new or existing technologies.
1,575 questions
SharePoint Server Management
SharePoint Server Management
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Management: The act or process of organizing, handling, directing or controlling something.
2,810 questions
Windows Server PowerShell
Windows Server PowerShell
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.PowerShell: A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
5,381 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. CaseyYang-MSFT 10,321 Reputation points
    2021-12-31T08:50:50.453+00:00

    Hi @Anandhan Sathyanarayanan ,

    Are you using SharePoint Online?

    You could enable site classification in your tenant. To enable the site classification capability, you can execute PowerShell code like the following sample.

    # Install the Azure AD Preview Module for PowerShell  
    Install-Module AzureADPreview  
      
    # Connect to Azure AD  
    Connect-AzureAD  
      
    # Create new directory setting and set initial values  
    $template = Get-AzureADDirectorySettingTemplate | where { $_.DisplayName -eq "Group.Unified" }  
      
    $setting = $template.CreateDirectorySetting()  
    $setting["UsageGuidelinesUrl"] = "https://aka.ms/sppnp"  
    $setting["ClassificationList"] = "HBI, MBI, LBI, GDPR"  
    $setting["DefaultClassification"] = "MBI"  
    New-AzureADDirectorySetting -DirectorySetting $setting  
    

    While in the following figure, you can see the classification highlighted in the header of a "modern" site.

    161608-site-classification-ui-output.png

    For Reference: SharePoint "modern" sites classification


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.

  2. Limitless Technology 39,371 Reputation points
    2022-01-04T10:06:42.567+00:00

    Hi there,

    The Tags & Notes feature of SharePoint in Microsoft 365 has been retired. You can no longer create new tags and notes or access existing ones.

    What to use instead of Tags & Notes
    https://support.microsoft.com/en-us/office/sharepoint-tags-notes-feature-retired-77851bd5-6d5e-42fe-9bf6-d7c17eeb771f


    --If the reply is helpful, please Upvote and Accept it as an answer--

    1 person found this answer helpful.