latest Post

How To Rename SharePoint Managed Metadata Name Using PowerShell Command?

How To Rename SharePoint Managed Metadata Name Using PowerShell Command?


Introduction

In this blog, you will learn how to rename SharePoint Managed Metadata name using the PowerShell command. This PowerShell command is supported only in on-premise versions and not supported on SharePoint online - Office 365 sites. The "Rename Managed Metadata" property name option is available only on on-premise versions as of now and it is not available on Office 365 sites.

Recommendation

As per my experience, I will not suggest doing this because it may affect your custom applications ( that are using SharePoint Managed Metadata). So, this is only a good option when:

  1. While you need to rename and you are 100% sure that it is not affecting any custom solution.
  2. If you are in the phase of building a farm or setting up first SharePoint Managed Metadata.
Steps Involved

Please use the following PowerShell in SharePoint PowerShell window. You can run this only using run as Administrator in PowerShell window on SharePoint farm and this needs to run on Application Server.
  1. $metadataApplication = Get-SPMetadataServiceApplication -Identity "Global Managed Metadata "  
  2. $proxy = $metadataApplication.ServiceApplicationProxyGroup.Proxies | Where-Object { $_.Name -like "*Global Managemetadata*" }  
  3. $proxy.Name = "Global Managed Metadata";  
  4. $proxy.Update();  
In this script, we are replacing "Global Managemetadata" with a new name "Global Managed Metadata".

Summary

Thus, you have learned how to rename SharePoint Managed Metadata Store name using PowerShell on on-Premise SharePoint versions sites.

About Yogendra Bhardwaj

Yogendra Bhardwaj
Yogendra has been in the IT services industry for almost 10 years and Microsoft certified Professional. He specialized in Service and Delivery management, Design and development of Microsoft technology based systems including Collaboration, also having experience of Automation and integration of different platform. He has got extensive experience with Microsoft technology stake for Office 365, SharePoint 2010/2013, and .net , C#. Also having hands on knowledge on Telerik Sitefinity, site core, Visual studio Test Manager, He has extensive experience for App Dev and App Support projects with supporting end to end SDLC process for Support and Maintenance projects.
Recommended Posts × +

0 comments:

Comment