To update or create a shared property for a term in your term store run the following script. #Load SharePoint PowerShell Snap In Add-PSSnapin Microsoft.SharePoint.PowerShell; #Get Taxonomy Session $session = new-object Microsoft.SharePoint.Taxonomy.TaxonomySession(Central Admin URL); #Get Managed Metadata Service $Store = $Session.TermStores["Managed Metadata Service"]; #Get Term Group $Group = $Store.Groups["Group Name"]; #Get Term Set $TermSet =... Continue Reading →
SharePoint 2010: Accessing the Managed Metadata Service via Code
I was recently asked to provide some code which could query the managed metadata service of a SharePoint 2010 implementation and extract the terms for use in a separate web site. This turned out to be a bit more complicated than I initially thought as the architecture called for use of the SharePoint Web Services,... Continue Reading →