3/13/2012

how to remove service application from sharepoint



How to delete service application
------------------------------------
#To retrieve the service application that you want to delete, type the following command:
$spapp = Get-SPServiceApplication -Name "<Service application display name>"

#delete the selected service application
Remove-SPServiceApplication $spapp
#
To delete the selected service application and also delete the service application database
Remove-SPServiceApplication $spapp –RemoveData

No comments: