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.
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 $appInstanceThank you.
0 comments:
Post a Comment