The powershell commands to delete the unwanted app pools in Sharepoint
Go to Programs --> Sharepoint 2010 Products --> Sharepoint 2010 management Shell
Type the command -- Get-SPServiceApplicationPool | select Name
It would display the set of names.
Enter the below command to remove/delete the app pool
Remove-SPServiceApplicationPool -Identity "<enter the unwanted app pool name>"
It would ask for confirmation, enter 'Y' to complete the removal.
Go to Programs --> Sharepoint 2010 Products --> Sharepoint 2010 management Shell
Type the command -- Get-SPServiceApplicationPool | select Name
It would display the set of names.
Enter the below command to remove/delete the app pool
Remove-SPServiceApplicationPool -Identity "<enter the unwanted app pool name>"
It would ask for confirmation, enter 'Y' to complete the removal.
Comments
Post a Comment