Is there a integrated Rollback-Action in any of the Installer-systems mentioned above? I know it's available in Windows Installer, but it seems to be missing in any other system I looked into.

Is there any system like Windows Installer that actually supports automatic Rollbacks?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

NSIS does not support this because a script could do anything (Call any Windows API, use NSIS plugins to perform advanced tasks etc) and it would be impossible to know what and how to roll-back. But if you code the uninstaller to handle half-baked installs, you execute the uninstaller.

link|improve this answer
thx for your answer, that was what I actually feared. As I'm comparing Setup Engines for a company that's not that much into installer-programming - they have more than enough work with there applications and hardware drivers - it seems that I can't suggest anything not related to Windows Installer at the moment. – MFH Jan 11 '11 at 18:37
Any idea on InnoSetup? As it's also completely script-based, I fear that there is also no rollback concept… – MFH Jan 11 '11 at 18:59
@MFH - InnoSetup is not 100% script based, but suffers the same problems. – Robert Love Jul 18 '11 at 18:24
feedback

NSIS does not support automatic rollbacks, you have to code it yourself.

InnoSetup, however, does provide automatic rollback support. Special care needs to be taken to invoke it if you are using special scripts or hooks, but a simple install will have it "for free."

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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