1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| for %%i in (a,b,c) do echo updating %%i now ... ^ && "C:\Program Files\IIS\Microsoft Web Deploy V3\msdeploy.exe" ^ -verb:sync ^ -source:runCommand="c:\windows\system32\iisapp.vbs /a BPReports /r",waitInterval=20000 ^ -dest:auto,computerName=%%i
for %%i in (a,b,c) do echo updating %%i now ... ^ && "C:\Program Files\IIS\Microsoft Web Deploy V3\msdeploy.exe" ^ -verb:sync ^ -source:package="\\aaa\DeployPackages\1.9_20120905_patch\BPReport\BpsReport-1.9.4631.4135.zip" ^ -dest:auto,computerName=%%i ^ -replace:objectName=filePath,match=-prod\.config$,replace=.config ^ -skip:objectName=filePath,absolutePath=.*-dev\.config$ ^ -skip:objectName=filePath,absolutePath=.*-qa\.config$ ^ -skip:objectName=filePath,absolutePath=.*-stg\.config$ ^ -skip:objectName=filePath,absolutePath=.*-uat\.config$ ^ -skip:objectName=filePath,absolutePath=.*-dallas\.config$ ^ -verbose
|