如何使用wix bootstraper更改exe文件的详细信息?

时间:2016-06-16 11:51:42

标签: wix windows-installer exe

我有一个Visual Studio捆绑文件:

<?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="Some Name"
    Version="3.2.2" 
    Manufacturer="Some Company" 
    Copyright="Copyright: Some Company, Inc">
    ...
    </Bundle>
</Wix>

构建exe详细信息菜单包含两个参数(文件描述和产品名称)后,这些参数具有相同的值。有一种方法只使用WIX功能使这些值不同吗?

enter image description here

1 个答案:

答案 0 :(得分:4)

从Wix版本3.10.2开始,您无法为exe文件描述资源的ProductNameFileDescription字段设置不同的值。

查看WIX源代码,特别是可从here下载的WIX310-Debug.zip文件src \ tools \ wix \ Binder.cs,显示以下代码片段,用于设置exe文件的资源:

        Microsoft.Deployment.Resources.VersionStringTable strings = version[1033];
        strings["LegalCopyright"] = bundleInfo.Copyright;
        strings["OriginalFilename"] = Path.GetFileName(outputPath);
        strings["FileVersion"] = bundleInfo.Version;    // string versions do not have to be four parts.
        strings["ProductVersion"] = bundleInfo.Version; // string versions do not have to be four parts.

        if (!String.IsNullOrEmpty(bundleInfo.Name))
        {
            strings["ProductName"] = bundleInfo.Name;
            strings["FileDescription"] = bundleInfo.Name;
        }

请注意,ProductNameFileDescription设置为相同的值。

如果这很重要,您可以通过WiX问题跟踪数据库申请新功能:https://github.com/wixtoolset/issues/issues