Wix 刻录包未出现在 "add or remove programs" 中

wix burn bundle not appearing in "add or remove programs"

我已经使用 burn 创建了一个捆绑安装程序,它工作正常,我可以使用 exe 安装和卸载,但它没有出现在控制面板中 "add or remove programs"

<?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 Version="14.0" UpgradeCode="7adb5f07-fb5f-4348-8f28-c821bebdc15e">

    <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense">
      <bal:WixStandardBootstrapperApplication
            LogoFile="..\Installers\Graphics\banner.png"
            LicenseFile="..\Installers\Text\licence.rtf"
            ShowVersion="yes"
            ThemeFile="ClassicTheme.xml"
            LocalizationFile="ClassicTheme.wxl" 
            />

    </BootstrapperApplicationRef>
    <Chain>

      <MsiPackage DisplayName="Install My Stuff" Permanent="no" Name="My Stuff" SourceFile=".\Kits\XL\Stuff.msi"></MsiPackage>
      <ExePackage DisplayName="Register Components" Permanent="no" Name="my custom stuff" SourceFile=".\Bin\RegAddIns.exe"></ExePackage>
    </Chain>

  </Bundle>
</Wix>

我猜你的包没有名字。您的 <Bundle> 标签中缺少几个可能的属性。通常我会在包定义中包含名称、版本、制造商、IconSourceFile 和 UpgradeCode。这些都用在add/remove程序入口。