How to remove unused Application Pool in SharePoint
There is only one way to remove the application pool for SharePoint, using powershell command.
First open the SharePoint 2013 management power shell as a administrator
Now we have to get the all application pools.
'Get-SPServiceApplicationPool'
Now we can able to see all Application Pools.
Get-SPServiceApplicationPool -Identity <Name of the application pool>
Now we can to delete what ever the application pool we want.
Remove-SPServiceApplicationPool 'Name of the Application Pool'
Default is "Y">:Y
There is only one way to remove the application pool for SharePoint, using powershell command.
First open the SharePoint 2013 management power shell as a administrator
Now we have to get the all application pools.
'Get-SPServiceApplicationPool'
Now we can able to see all Application Pools.
Get-SPServiceApplicationPool -Identity <Name of the application pool>
Now we can to delete what ever the application pool we want.
Remove-SPServiceApplicationPool 'Name of the Application Pool'
Default is "Y">:Y