2

我正在构建一个需要在非 Internet 连接环境中工作的设置包,因此我在包中包含了 .NET 4.0 框架安装程序及其对应的 eula。我复制了源代码,wix37-sources\src\ext\NetFxExtension\wixlib\NetFx4.wxs但做了一些修改,以便压缩包而不是远程有效负载。

但是,我无法弄清楚如何使 eula 链接从捆绑包中加载有效负载。我总是得到:

[0930:0BDC][2013-08-22T16:02:37]e000: Error 0x80070002: Failed to launch URL to EULA.

这是蜡源:

<!-- Referencing the NetFx40Full package will cause these WixVariables to be defined -->
<!-- which indicates to the bootstrapper engine what the MBA dependency is -->
<WixVariable Id="WixMbaPrereqPackageId" Value="NetFx40Full"/>
<WixVariable Id="WixMbaPrereqLicenseUrl" Value="NetFX_4_all_FINAL_RTM.rtf"/>

<PackageGroup Id="NetFx40Full">
  <ExePackage
      Id="NetFx40Full"
      InstallCommand="/q /norestart /ChainingPackage &quot;[WixBundleName]&quot;"
      RepairCommand="/q /norestart /repair /ChainingPackage &quot;[WixBundleName]&quot;"
      UninstallCommand="/uninstall /q /norestart /ChainingPackage &quot;[WixBundleName]&quot;"
      PerMachine="yes"
      DetectCondition="NETFRAMEWORK40"
      Vital="yes"
      Permanent="yes"
      Protocol="netfx4"
      SourceFile="$(var.SourceRoot)\Deployment\Packages\.NET Framework 4.0\dotNetFx40_Full_x86_x64.exe"
      Compressed="yes">

    <Payload SourceFile="$(var.SourceRoot)\Deployment\Packages\.NET Framework 4.0\NetFX_4_all_FINAL_RTM.rtf"
             Compressed="yes"/>
  </ExePackage>
</PackageGroup>

这真的可能吗?

4

0 回答 0