(imported topic written by SystemAdmin)
Hi,
1> I have created a action script to Install a MSI package
download http://10.0.22.140:52311/Uploads/d5ea7e9ea1caf77a5bf2ac7d7c545d51a0608465/CCAAgent-4500msi.tmp
continue if {(size of it = 5918339 AND sha1 of it = “d5ea7e9ea1caf77a5bf2ac7d7c545d51a0608465”) of file “CCAAgent-4500msi.tmp” of folder “__Download”}
extract CCAAgent-4500msi.tmp
wait “{pathname of system folder & “\msiexec.exe”}” /i “{(pathname of client folder of current site) & “__Download\CCAAgent-4.5.0.0.msi”}” ALLUSERS=2 /qn /norestart /l*v “{pathname of folder “temp” of windows folder & “\MyLogFile.txt”}”
Here the action is shown as completed but the software is not installed when i have gone through the logs it says.
Reconfiguration success or error status: 1638.
MSI (s) (48:88)
13:05:48:822
: MainEngineThread is returning 1638
MSI (s) (48:7C)
13:05:48:822
: No System Restore sequence number for this installation.
Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel
2> Then i modifed the action to first removal of the prior version then install the same
download http://10.0.22.140:52311/Uploads/d5ea7e9ea1caf77a5bf2ac7d7c545d51a0608465/CCAAgent-4500msi.tmp
continue if {(size of it = 5918339 AND sha1 of it = “d5ea7e9ea1caf77a5bf2ac7d7c545d51a0608465”) of file “CCAAgent-4500msi.tmp” of folder “__Download”}
wait “{pathname of system folder}\msiexec.exe” /X{04010300-6D72-4D54-8686-91D884A27B5C} /qn
extract CCAAgent-4500msi.tmp
wait “{pathname of system folder & “\msiexec.exe”}” /i “{(pathname of client folder of current site) & “__Download\CCAAgent-4.5.0.0.msi”}” ALLUSERS=2 /qn /norestart /l*v “{pathname of folder “temp” of windows folder & “\MyLogFile.txt”}”
but the action is getting failed during removing of prior version
Failed wait “{pathname of system folder}\msiexec.exe” /X{04010300-6D72-4D54-8686-91D884A27B5C} /qn
Please guide me for the same.
Thanks
Aakash