2

我创建了安装MSXML.msix.msi的简单引导程序项目。我想要的是在静默模式下执行msxml.msi然后x.msi。但我完全不知道如何将命令行参数传递给 MSI 包

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
     xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">

<Bundle>
    ...
    <Chain>
      <MsiPackage Id="MSXML" SourceFile="msxml_XP_x86.msi" />    
      <MsiPackage Id="MSI" SourceFile="x.msi"/>
    </Chain>
  </Bundle>
</Wix> 
4

1 回答 1

2

我想DisplayInternalUI这就是你要找的。DisplayInternalUI 的值为“是”或“否”

<MsiPackage DisplayInternalUI="no" />
于 2013-05-20T10:41:43.923 回答