How to remove app from SharePoint 2013/2016

I have installed an SharePoint App for creating surveys but when try to uninstall / remove it from the site it shows exception message "sorry we couldn't remove the app".

Solution:
I have used following Power-Shell commands to install/remove app successfully 

$instances = Get-SPAppInstance -Web <URL>

$instance = $instances | where {$_.Title -eq '<app_title>'}  

Uninstall-SPAppInstance -Identity $instance


Comments

Popular posts from this blog

SQL SERVER – FIX : Error 3154: The backup set holds a backup of a database other than the existing database

SharePoint Close methods for SP Long Operations and Redirect Error Page

The model backing the context has changed since the database was created. Consider using Code First Migrations to update the database