Tuesday, February 23, 2010
Batch Files to Retract, Deploy WSPs
All-Retr-Depl-Sol
@Echo on
@Echo Installing all solutions
@Echo.
@Echo.
for %%i in (*.wsp) do call Retr-Depl-Sol %%i
for %%i in (*.wsp) do call Feature-Deac-Act %%~ni
Retr-Depl-Sol
@Echo on
@Echo Retracting Solution %1
stsadm -o retractsolution -name %1 -immediate
stsadm -o execadmsvcjobs
@Echo Deleting Solution %1
stsadm -o deletesolution -name %1
@Echo Adding Solution %1
stsadm -o addsolution -filename %1
@Echo Deploying Solution %1
stsadm -o deploysolution -name %1 -immediate -allowgac -force
stsadm -o execadmsvcjobs
stsadm -o execadmsvcjobs
Feature-Deac-Act
@echo On
stsadm -o deactivatefeature -filename %1\feature.xml -url http://Server/ -force
stsadm -o activatefeature -filename %1\feature.xml -url http://Server/ -force
iisreset
popd
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment