wix刻录包未出现在“添加或删除程序”中

时间:2017-01-04 14:47:11

标签: wix burn

我已经使用刻录创建了一个捆绑安装程序,它运行正常,我可以使用exe安装和取消,但它没有出现在控制面板中“添加或删除程序”

<?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>

1 个答案:

答案 0 :(得分:2)

你的包没有名字是我的猜测。您在<Bundle>标记中遗漏了几个可能的属性。通常我会在包定义中包含Name,Version,Manufacturer,IconSourceFile和UpgradeCode。这些都在添加/删除程序条目中使用。