WiX捆绑包不在程序和功能中显示MSI

时间:2017-01-19 15:32:50

标签: wix uninstall

我的捆绑安装中出现了新的,奇怪的行为:MSI - 曾经出现在程序和功能中 - 已停止出现在程序和功能(以下简称P& F)中。 / p>

喜欢的行为是我作为MSI安装的程序出现在P& F中,让用户有机会分别卸载它们。

我尝试/注意到了什么:

  • 如果我安装MSI而不捆绑它们:
  • 它们出现在P& F中,并且可以卸载
  • 此外,我可以通过将ARPSYSTEMCOMPONENT属性设置为1来控制它们是否出现在P&amp; F中(默认值为0,表示&#34;确实出现在P * F中),即: <Property Id="ARPSYSTEMCOMPONENT" Value="1"/>

  • 这些更改会反映在注册表中。在检查密钥 HKLM / SOFTWARE / Microsoft / Windows / CurrentVersion / Uninstall / {GUID} 时,如果我将属性设置为1则会显示(当我设置它时它不会显示)为0,但我认为这是因为默认值不会显示)。

但是,当我将MSI放入Bundle时, bingo-bango-bongo 它们会从P&amp; F中消失!并且,如果我检查注册表,则每个MSI的 SystemComponent 属性设置为1.

我得出结论,不知何故,在我的引导程序中,我的MSI的 SystemComponent 属性被设置为1.但是这些属性可以设置在哪里?不用说,我从来没有在我的WiX XML中设置它们(至少,我不认为我这样做)。我没有为引导程序提供任何特殊的UI(只是一个许可证),而且MSI本身安装得很安静,没有用户界面。

我被卡住了!任何人都可以对此有所了解吗?

我使用的是Visual Studio 2015,WiX版本3.10。这是我的Bootstrapper代码的全部内容:

 <?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
     xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"
     xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"
     xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
    <Bundle Name="****"
            Version="1.0.5.0"
            Manufacturer="****"
            UpgradeCode="7be91f26-93f8-400c-9eac-e69383454e03"
            IconSourceFile="src\****.ico" DisableModify="yes" DisableRemove="yes"
            AboutUrl="****.com"
            Copyright="Copyright 2017, ****">
        <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense">
            <bal:WixStandardBootstrapperApplication LicenseFile="src\****_License.rtf" 
                                                    SuppressOptionsUI="yes"/>
        </BootstrapperApplicationRef>

        <!-- The two registry serarches provide a variable, what version of .NET is installed on the target machine.  One search
           is for x86, the other for x64. -->
        <util:RegistrySearch Root="HKLM"
                             Key="SOFTWARE\Microsoft\Net Framework Setup\NDP\v4\Full"
                             Value="Version"
                             Variable="Net452FullVersion"/>
        <util:RegistrySearch Root="HKLM"
                             Key="SOFTWARE\Microsoft\Net Framework Setup\NDP\v4\Full"
                             Value="Version"
                             Variable="Net452x64FullVersion" 
                             Win64="yes"/>

        <Chain>
            <ExePackage
                Id="Microsoft_dot_Net_4.5.2" 
                Name="Microsoft 4.5.2 Setup"
                Cache="no"
                Compressed="yes"
                PerMachine="yes"
                Permanent="yes"
                SourceFile="executables\NDP452-KB2901907-x86-x64-AllOS-ENU.exe" 
                InstallCommand="/q"
                DetectCondition="(Net452FullVersion = &quot;4.5.51209&quot;) AND (NOT VersionNT64 OR (Net4x64FullVersion = &quot;4.5.51209&quot;))"
                InstallCondition="(VersionNT >= v6.0 OR VersionNT64 >= v6.0) AND (NOT (Net452FullVersion = &quot;4.5.51209&quot; OR Net452x64FullVersion = &quot;4.5.51209&quot;))"/>
            <ExePackage Id="Microsoft_Visual_C_plus_plus_Redistributable_2015" 
                        InstallCommand="/q" 
                        SourceFile="executables\vc_redist.x86.exe"/>
            <RollbackBoundary/>                    
            <MsiPackage SourceFile="$(var.****.TargetPath)"/>
            <MsiPackage SourceFile="$(var.****.TargetPath)"/>
            <ExePackage SourceFile="executables\****.exe" InstallCommand="/S"/>
            <ExePackage SourceFile="executables\****.exe"/>
        </Chain>
    </Bundle>
</Wix>

1 个答案:

答案 0 :(得分:0)

MsiPackage/@Visible属性控制是否在ARP中显示MSI包。