显示发生故障并回滚或退出安装程序 (NSIS)

发布于 2024-10-01 06:43:44 字数 101 浏览 6 评论 0原文

如果我尝试安装 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

无畏 2024-10-08 06:43:44

没有自动回滚,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))

不…忘初心 2024-10-08 06:43:44

我认为 Abort 命令 可能是正确的做法。

I think that the Abort command might be the correct approach.

纸短情长 2024-10-08 06:43:44

您可以使用:

ExecWait 'msiexec /i "$INSTDIR\something.msi"' $0
${If} $0 != '0' 
    MessageBox MB_OK|MB_ICONSTOP 'Install Failed!'
    Abort "Install failed"
${EndIf}    

就像@Anders所说,您必须自己处理回滚

You can use:

ExecWait 'msiexec /i "$INSTDIR\something.msi"' $0
${If} $0 != '0' 
    MessageBox MB_OK|MB_ICONSTOP 'Install Failed!'
    Abort "Install failed"
${EndIf}    

Just like @Anders said you have to take care of the rollback by yourself

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文