2

我正在使用 WIX 3.0 工具集和 VS2008。在我的“.wixproj”文件中,我添加了以下代码(工作正常)。我想添加一个条件,以便它仅在安装了 office 2007 时才安装 PIA。

...
    <ItemGroup>
        <BootstrapperFile Include="Microsoft.Net.Framework.3.5">
          <ProductName>.NET Framework 3.5</ProductName>
        </BootstrapperFile>

        <!-- Here I want to check if office is installed. If true then install the PIAs -->    
        <BootstrapperFile Include="Microsoft.Office.PIARedist.2007">
          <ProductName>Microsoft Office 2007 Primary Interop Assemblies</ProductName>
        </BootstrapperFile>

      </ItemGroup>
     ...

我在我的安装程序脚本 .wxs 中编写了以下代码,但这在引导程序中没有用。

...
<!-- Properties to check for Word 2007 Version. Return string should be "Word.Application.12" -->
    <Property Id="WORDVERSION">
      <RegistrySearch Id="RegistrySearchWordVersion"
                      Root="HKCR"
                      Key="Word.Application\CurVer"
                      Type="raw"/>
    </Property>
...
4

1 回答 1

1

类似于:WIX:GenerateBootStrapper 条件?

查看产品和包架构参考,您可能想查看 <BypassIf> 和 <InstallChecks> 元素。

于 2011-05-05T22:00:39.510 回答