Admin-Ahead Community

Windows => General Windows => Topic started by: Aby on February 08, 2014, 12:01:32 pm

Title: How to remove inactive search topology in SharePoint 2013
Post by: Aby on February 08, 2014, 12:01:32 pm
How to remove inactive search topology in SharePoint 2013

Use this Powershell command to remove inactive search topology in SharePoint 2013:

Get-SPEnterpriseSearchServiceApplication | Get-SPEnterpriseSearchTopology |? {$_.State -eq "Inactive"} |% { Remove-SPEnterpriseSearchTopology -Identity $_ -Confirm:$false};

---