Explore the essential process of updating Term Sets in SharePoint Online with our comprehensive guide. Discover how to maintain an accurate taxonomy that reflects your content organization, ensuring efficient categorization and navigation. Dive into step-by-step instructions and expert insights to streamline your SharePoint experience.

Steps to update term set properties in SharePoint Online

To update term set properties in SharePoint Online using the admin center, follow these steps:

Step 1. Access SharePoint Admin Center

Step 2. Navigate to Term Store

3. Locate the Term Set

Step 4. Edit Term Set Properties

Step 5. Save Changes

Step 6. Confirm Changes

Complete script for updating term set properties

Here is the complete script for updating term set properties in SharePoint Online using PnP PowerShell.

# Connect to SharePoint Online
Connect-PnPOnline -Url https://yourtenant.sharepoint.com -Interactive

#Update Term set 
Set-PnPTermSet -Identity "YourTermSetName" -TermGroup "YourTermGroupName" -Name "new_name" -Description "new_description"

Replace "YourTermSetID" and "YourTermGroup" with the appropriate values for your term set. This script will update the name and description. Adjust the properties and values as needed for your specific requirements.

Conclusion

Term Sets in SharePoint Online are essential for maintaining an organized environment. With our guide, you can easily navigate the process using the admin center or PnP PowerShell. By ensuring accurate taxonomy, you enhance content organization and navigation for a streamlined SharePoint experience.