When installing a .MSI file using msiexec in silent mode, is it possible to automate it such that on installation failure it rollbacks to the previous version? Assuming that on installation an older application version is already installed.

link|improve this question
feedback

2 Answers

No, this is not possible. A major upgrade uninstalls the old version before installing your new one. So when the new install fails, the old version is already removed.

link|improve this answer
feedback

There is a possibility but it involves changing the upgrade sequence which is not always an easy thing to achieve. You should move the RemoveExistingProducts after InstallExecute action

http://msdn.microsoft.com/en-us/library/windows/desktop/aa371197(v=vs.85).aspx

link|improve this answer
This could be problematic if there are shared files. E.g.: Adobe Reader registers files in "Program Files\Common Files\Adobe\Acrobat\ActiveX\" – Lucian Podereu Nov 16 '11 at 23:59
I don't understand what problem you are talking about. – Ciprian Nov 17 '11 at 6:59
If the previous version and the new version have common files, there could be problems if trying to copy the newer files before removing the older ones. Or if the are files registered with a browser. – Lucian Podereu Nov 17 '11 at 9:59
There should not be any problems regarding the file copy. Maybe you should give it a try ans see how it works for you. – Ciprian Nov 17 '11 at 11:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.