Skip to content

Instantly share code, notes, and snippets.

@cmd64
Last active January 29, 2019 12:21
Show Gist options
  • Save cmd64/deedd4c1a5df52feeaab1828784637ae to your computer and use it in GitHub Desktop.
Save cmd64/deedd4c1a5df52feeaab1828784637ae to your computer and use it in GitHub Desktop.
SharePoint PowerShell - Uninstall, Remove, Add, Install Solution
#If run on Windows PowerShell must be add below code
#Add-PSSnapin Microsoft.SharePoint.PowerShell
Uninstall-SPSolution -Identity Solution.wsp -WebApplication http://siteaddress
Remove-SPSolution -Identity Solution.wsp
Add-SPSolution -Literal C:\Solution.wsp
Install-SPSolution -Identity Solution.wsp -WebApplication http://siteaddress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment