How to Create Managed Property in Sharepoint 2013 using Powershell?
In this article, we will see how to create new managed property in Sharepoint 2013 environment. Below is the sample powershell script to achieve the same. #Get Search Service Application $category = Get-SPEnterpriseSearchMetadataCategory –SearchApplication $searchapp –Identity $_.Category #Get the Crawled Property First $cprop = Get-SPEnterpriseSearchMetadataCrawledProperty -SearchApplication $searchapp -name $_.CrawledPropertyName -Category $category -ea silentlycontinue #If the […]