Remove an App from SharePoint Site

Leave a Comment
Hi All,
In a following post we will see , how to un install app using Powershell.
find the below Steps,
Open SharePoint Management Shell as an Administrator,
then type below commands.
# Used to Get all apps installed on the site you specify.
$appInstances = Get-SPAppInstance -Web <URL>
# Sets the $appInstance variable to the app with the title you supply.
$appInstance = $instances | where {$_.Title -eq '<app_title>'}
# Uninstalls the app from the site.
Uninstall-SPAppInstance -Identity $appInstance
Thank you.

Related Post

0 comments:

Post a Comment