是否有可能在安装过​​程中使用wix运行exe?

时间:2015-08-26 10:37:53

标签: xml wix windows-installer wix3.8

我是wix的新手。在安装过程中是否有可能在wix的帮助下运行exe文件。

所以我已经完成了,我现在不知道安装exe文件。请帮忙......

             

    <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
    <MediaTemplate />

    <Feature Id="ProductFeature" Title="SetupProject1" Level="1">
        <ComponentGroupRef Id="ProductComponents" />
    </Feature>
</Product>

<Fragment>
    <Directory Id="TARGETDIR" Name="SourceDir">
        <Directory Id="ProgramFilesFolder">
          <Directory Id="INSTALLFOLDER" Name="SetupProject1" />
        </Directory>
     </Directory>
</Fragment>

<Fragment>
    <ComponentGroup Id="ProductComponents" Directory="ProgramFilesFolder">
         <Component Id="ProductComponent">
          <File Id="PLGSMPL" Source="$(var.PLGSMPL.TargetPath)"/>
          <RemoveFile Id="plug_in" Name="PLGSMPL.dll" On="uninstall" />
         </Component> 
    </ComponentGroup>
</Fragment>

1 个答案:

答案 0 :(得分:1)

在安装过程中运行EXE的最简单方法是使用Quiet Execution Custom Action - WiX Toolset

但是,我谨慎地做到这一点,因为无论EXE做了什么,MSI都不知道。它无法进行维修,无法回滚,使用ORCA无法观察或转换,可能会给您的安装人员带来脆弱性。