Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: How to remove inactive search topology in SharePoint 2013  (Read 4639 times)

0 Members and 2 Guests are viewing this topic.

Aby

  • Guest
How to remove inactive search topology in SharePoint 2013
« 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};

---