通过 wix customaction 调用时,msi 文件未运行

发布于 2024-10-21 00:06:24 字数 233 浏览 4 评论 0原文

我的 wix 项目中有以下内容,但 msi 文件(有效并从命令行运行)无论有无静默参数都不会运行

<InstallExecuteSequence >
  <Custom Action="Runmymsi" After="InstallFinalize">Not Installed</Custom>
</InstallExecuteSequence>

I have the following in my wix project but the msi file (which is valid and runs from the command line) will not run either with or without the silent parameter

<InstallExecuteSequence >
  <Custom Action="Runmymsi" After="InstallFinalize">Not Installed</Custom>
</InstallExecuteSequence>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

失退 2024-10-28 00:06:24

我以前遇到过这个。您的问题是您无法从另一个 MSI 调用 MSI。这些需要在不同的时间运行。我建议编写一个引导程序,以正确的顺序运行您的 MSI。

I have run into this before. Your issue is that you can't call an MSI from another MSI. These need to be run at separate times. I would suggest writing a bootstrapper that will run your MSIs in the proper sequence.

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