首次安装时根据 MSI 调用的自定义 WiX 操作

发布于 2025-01-03 19:43:07 字数 1257 浏览 1 评论 0原文

我试图在产品安装期间(例如,在 InstallExecuteSquence 中的 InstallFiles 之后)使用 WiX 代码中的自定义操作“运行可执行文件”来调用依赖的 MSI 设置(存储在二进制表中)(我使用 WiX v3.5.2519.0)像这样:

<Upgrade Id="{CB60C307-588D-47F5-87DD-7FDAE12434B0}">
    <UpgradeVersion Property="OTHERMSI"
                    Minimum="1.0.0"
                    Maximum="1.1.0"
                    IncludeMinimum="yes"
                    IncludeMaximum="yes"
                    OnlyDetect="yes"/>
</Upgrade>

<CustomAction Id="INSTALL_OTHERMSI"
              Impersonate="yes"
              Return="check"
              Execute="immediate"
              BinaryKey="Other.msi"
              ExeCommand=""/>

<Binary Id="Other.msi"
        SourceFile="c:\temp\sources\Other.msi"/>

<InstallExecuteSequence>
  <Custom Action="INSTALL_OTHERMSI"
          After="InstallFiles">OTHERMSI="" AND NOT PATCH AND NOT Installed</Custom>
</InstallExecuteSequence>

当我运行 MSI 文件时,它会遍历直到自定义操作“INSTALL_OTHERMSI”。但它总是失败并出现错误消息:

无法运行完成此安装所需的程序。

我不想使用引导程序,我想要纯 MSI。我已经见过类似的安装(例如 JetBrains ReSharper,它在安装过程中安装 Visual Studio 2010 SP1)做这个把戏。我该如何解决这个问题?

I am trying to call a dependent MSI setup (stored in Binary table) during my product installation (for example, after InstallFiles in InstallExecuteSquence) using a custom action "run executable" in my WiX code (I use WiX v3.5.2519.0) like this:

<Upgrade Id="{CB60C307-588D-47F5-87DD-7FDAE12434B0}">
    <UpgradeVersion Property="OTHERMSI"
                    Minimum="1.0.0"
                    Maximum="1.1.0"
                    IncludeMinimum="yes"
                    IncludeMaximum="yes"
                    OnlyDetect="yes"/>
</Upgrade>

<CustomAction Id="INSTALL_OTHERMSI"
              Impersonate="yes"
              Return="check"
              Execute="immediate"
              BinaryKey="Other.msi"
              ExeCommand=""/>

<Binary Id="Other.msi"
        SourceFile="c:\temp\sources\Other.msi"/>

<InstallExecuteSequence>
  <Custom Action="INSTALL_OTHERMSI"
          After="InstallFiles">OTHERMSI="" AND NOT PATCH AND NOT Installed</Custom>
</InstallExecuteSequence>

When I run my MSI file it walks through until the custom action "INSTALL_OTHERMSI". But it always fails with an error message:

A program required for this install to complete could not be run.

I don't want to use a bootstrapper, I want pure MSI. I've seen similar installations (like JetBrains ReSharper, which installs Visual Studio 2010 SP1 during setup) already doing the trick. How can I fix this problem?

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

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

发布评论

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

评论(1

初见你 2025-01-10 19:43:07

首先,Windows Installer 不允许同时运行两个安装。因此这种方法行不通。您需要的是 MSI 链接。您可以使用 EmbeddedChainer 元素

First of all Windows Installer doesn't allow two installations to run at the same time. Thus this approach will not work. What you need is MSI chaining. You can use the EmbeddedChainer element

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