Change Global Search Center URL in SharePoint 2013

If the search center URL is empty you would be able to set it up in Search Administration Page on Central Admin.

Once you set the value you don’t have the interface to change this value.

Use PowerShell to change the URL

$search = $search = Get-SPEnterpriseSearchServiceApplication

$search.SearchCenterURL = <<URL>>

$search.Update();

SharePoint Foundation 2010 – Search Error

I was getting the below error, when I try to search for something in SharePoint Foundation 2010 Site. “Your Search cannot be completed because this site is not assigned to an indexer. Contact your administrator for more information”

As you guys aware that, we don’t have much options to manage search in foundation 2010, […]