我有一个基于WixUI InstallDir类型的wix文件。现在我能够成功的msi文件。但我有一个新的要求,我应该包括一个额外的USB驱动程序安装以及我的msi包。我试图在谷歌搜索,并知道有自定义安装是必需的所以我有点困惑如何实现这一点,可以有人帮我这方面请
示例代码:
<!--<UI>-->
<UIRef Id="WixUI_InstallDir" />
<UIRef Id="WixUI_ErrorProgressText" />
<Property Id ="WIXUI_INSTALLDIR" Value="__1.0" />
<WixVariable Id="WixUILicenseRtf" Value="ABc_License_Agreement.txt" />
<WixVariable Id="WixUIDialogBmp" Value="IEToolsSide_wix.bmp" />
<WixVariable Id="WixUIBannerBmp" Value="IEToolsBanner_wix.bmp" />
<!--</UI>-->
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<!--<MediaTemplate />-->
<Media Id="1" Cabinet="Cab1.cab" EmbedCab="yes"/>
<Feature Id="ProductFeature" Title="ABC IE Package R Ver 1.0" Level="1">
<ComponentGroupRef Id="ProductComponents" />
<ComponentRef Id="RegistryEntries"/>
</Feature>
</Product>
由于 Ajaya