Skip to content

Instantly share code, notes, and snippets.

@rheid
Created February 24, 2015 11:14
Show Gist options
  • Save rheid/a9f2ade0a42c1aa993c6 to your computer and use it in GitHub Desktop.
Save rheid/a9f2ade0a42c1aa993c6 to your computer and use it in GitHub Desktop.
Remove SP-Solution
Removing solution PowerShell cmd:
Remove-SPSolution -Identity solution.wsp -Force
Removing solution stsadm cmd:
stsadm -o deletesolution -name solution.wsp -override
Add Solution PowerShell cmd:
Add-SPSolution D:\solution.wsp
Add Solution stsadm cmd:
stsadm.exe -o addsolution -filename D:\solution.wsp
Install Solution PowerShell cmd:
Install-SPSolution –Identity solution.wsp -GACDeployment -Force
Install Solution stsadm cmd:
stsadm -o deploysolution -name solution.wsp -immediate -allowCasPolicies -force -allowGacDeployment
Stsadm –o addsolution –filename “c:\program files\nintex\nintex workflow
2007\nintexworkflow2007.wsp”
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment