我想添加安装程序的先决条件,我成功添加.net框架作为先决条件,但我想添加" k-lite编解码器包"在安装我的实际应用程序之前。
答案 0 :(得分:0)
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
<Bundle>
<Chain>
<ExePackage
SourceFile="..\Redist\KLite_Codec_Pack_1090_Full.exe"
DetectCondition="ExeDetectedVariable"
InstallCommand="/verysilent /ACTION=Install"
RepairCommand="/verysilent ACTION=Repair /hideconsole"
UninstallCommand="/verysilent ACTION=Uninstall /hideconsole"
Compressed="yes"
Permanent="yes"/>
</Chain>
</Bundle>
</Wix>
上面的代码解决了我的问题。通过installCommand / verysilent将以静默方式安装klite包。