Created
February 24, 2015 11:14
-
-
Save rheid/a9f2ade0a42c1aa993c6 to your computer and use it in GitHub Desktop.
Remove SP-Solution
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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