安装期间EXE作为自定义操作运行时等待安装程序

时间:2016-06-29 15:26:22

标签: wix windows-installer custom-action mosquitto wix3.10

我正在使用WIX安装Mosquitto,一旦文件被复制,我试图使用自定义操作运行mosquitto.exe。它启动一个新的命令提示符,安装在那里暂停。它仅在我终止该命令提示符时才恢复。以下是我的代码。

<Feature Id="ProductFeature" Title="MosquittoInstaller" Level="1">
  <ComponentGroupRef Id="MosquittoFilesGroup"/>
    </Feature>
<InstallExecuteSequence>
  <Custom Action="RunMosquitto" Before="InstallFinalize" />
</InstallExecuteSequence>


  <Directory Id="TARGETDIR" Name="SourceDir">
  <Directory Id="INSTALLLOCATION">
    <Directory Id="KubeInstallDir" Name="Kube2.0">
      <Directory Id="MyProgramDir" Name="Mosquitto" />
    </Directory>
  </Directory>
</Directory>
<CustomAction Id='RunMosquitto'  FileKey="fil7D28AEF774656849395A2FA20A5C963D"  Execute="deferred" ExeCommand='-v' Return="check" HideTarget="no" Impersonate="no"/>

我在这里做错了什么?请指教。

1 个答案:

答案 0 :(得分:2)

安装暂停,因为在自定义操作中,您有Return="check"。有关Return属性的详细信息,请参阅CustomAction documentation

Return="asyncNoWait"就是你想要的。

但是,the WiX documentation for running a program after install显示了不同的方式:

<Property Id="WixShellExecTarget" Value="[#myapplication.exe]" />
<CustomAction Id="LaunchApplication" BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="yes" />