Remove sharepoint site and custom list from the search result
Today, I came across the requirement where I have to stop site to be crawl in search Go to the Site Actions=> Site Settings => Site Administration => Search and offline availability. We can manage the visibility of site and site's web page's web parts for search. Using SharePoint object model: Using Powershell: #---------StopSearch $site=Get-SPSite "http://servername:1111/" $web=$site.RootWeb; $web.AllowAutomaticASPXPageIndexing=$true $web.ASPXPageIndexMode=[Microsoft.SharePoint.WebASPXPageIndexMode]::Never $web.NoCrawl=$false $web.Update() #---------StartSearch $site=Get-SPSite "http://servername:1111/" $web=$site.RootWeb; $web.AllowAutomaticASPXPageIndexing=$false $web.ASPXPageIndexMode=[Microsoft.SharePoint.WebASPXPageIndexMode]::Never $web.NoCrawl=$true $web.Update() For SharePoint Custom list: Go to : List Settings page, under General Settings , click Advanced settings . In the Search section, under Allow items from...