SharePoint 2013: PowerShell to update a term sets Submission Policy

The following PowerShell can be used to update a terms sets submission policy to open or closed. #Connect to Central Admin $Session = new-object Microsoft.SharePoint.Taxonomy.TaxonomySession("Central Admin URL") #Connect to Managed Metadata Service $Store = $Session.TermStores["Managed Metadata Service Name"] #Get the group $Group = $Store.Groups["Group Name"]; #Get the Term Set $TermSet = $Group.TermSets["Term Set Name"]; #Update... Continue Reading →

SharePoint 2013 Error: The filtering process has been terminated

I had just completed a PowerShell scripted deployment of a SharePoint farm and was just performing the final checks when I noticed the following error in the crawl logs. "The filtering process has been terminated" This turned out that because in the PowerShell script I had specified that the SharePoint installation location should be different to... Continue Reading →

SharePoint 2013 :Adding shared properties to a term set using PowerShell

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 →

Website Built with WordPress.com.

Up ↑