显示发生故障并回滚或退出安装程序 (NSIS)
如果我尝试安装 MSI,但它返回错误代码,我该如何正常回滚或退出安装程序?
If I try to install an MSI and it returns with an error code, how do I gracefully rollback or quit the installer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
没有自动回滚,NSIS 无法判断哪些操作应该回滚以及如何回滚。
您必须自己处理这个问题,要么回滚每个操作,要么以静默模式启动卸载程序 (
ExecWait'"$instdir\youruninstaller.exe" /S _?=$instdir'
(您必须之后删除卸载程序和 $instdir ))There is no automatic rollback, NSIS can't tell which of the operations should be rolled back and how.
You have to deal with this yourself, either by rolling back each operation or starting your uninstaller in silent mode (
ExecWait'"$instdir\youruninstaller.exe" /S _?=$instdir'
(You must delete the uninstaller and $instdir after this))我认为
Abort
命令 可能是正确的做法。I think that the
Abort
command might be the correct approach.您可以使用:
就像@Anders所说,您必须自己处理回滚
You can use:
Just like @Anders said you have to take care of the rollback by yourself