Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/wix/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Wix引导程序不会在“程序和功能”菜单中显示制造商名称_Wix_Windows Installer - Fatal编程技术网

Wix引导程序不会在“程序和功能”菜单中显示制造商名称

Wix引导程序不会在“程序和功能”菜单中显示制造商名称,wix,windows-installer,Wix,Windows Installer,Wix引导程序在“添加/删除程序”菜单中不显示制造商名称。我希望复制以下程序所具有的功能,但即使我的引导程序包指定了它的制造商名称,也不会在应该有制造商/发布者名称的位置显示任何内容 -还有我对问题本身的评论。-还有我对问题本身的评论。 <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:bal="http://sche

Wix引导程序在“添加/删除程序”菜单中不显示制造商名称。我希望复制以下程序所具有的功能,但即使我的引导程序包指定了它的制造商名称,也不会在应该有制造商/发布者名称的位置显示任何内容


-还有我对问题本身的评论。-还有我对问题本身的评论。
<?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 Name="name" Version="1.0.0.0" Manufacturer="manufacturer" UpgradeCode="84884025-3ff1-4d8e-9fcc-385119a8a322">
    <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense">
      <bal:WixStandardBootstrapperApplication LicenseFile="licence.rtf"
                                              SuppressOptionsUI="yes"/>
    </BootstrapperApplicationRef>

    <Chain>
      <MsiPackage Id="x64" InstallCondition="VersionNT64" SourceFile="$(var.proj.Installer.TargetDir)-Debug-x64.msi"/>
      <MsiPackage Id="x86" InstallCondition="NOT VersionNT64" SourceFile="$(var.proj.Installer.TargetDir)\x86\-Debug-x86.msi"/>
        </Chain>
    </Bundle>
</Wix>