Monday, April 28, 2014

Access Denied for Service Account on the EnterPrise Search Center in SharePoint 2010

Access Denied for Service Account on the EnterPrise Search Center in SharePoint 2010


In my case it is happening due to PortalUserAccounts

Need to execute this .


$wa = Get-SPWebApplication -Identity " Search web App url"
$wa.Properties.Remove("portalsuperuseraccount")
$wa.Properties.Remove("portalsuperreaderaccount")
$wa.Update()