wix 安装程序不安装 VS 2005 合并模块文件

发布于 2024-10-31 10:33:33 字数 1532 浏览 0 评论 0原文

这可能是一个愚蠢的问题,但我花了几个小时测试各种可能性,但没有找到答案。

我在 VS 2005 中准备了一个标准合并模块(可能没问题,我已经准备了标准 VS 2005 安装项目,包括合并模块并且它工作正常)

Wix 项目(主要是因为 GUI 原因)来负责安装。代码示例(为了简洁而缩短)

目录部分:

<Directory Id="INSTALLLOCATION" Name="sth">
      <Merge Id='MyModule3' Language='1033' SourceFile='MergeModule.msm' DiskId='1' />
</Directory>

功能部分:

<Feature Id="ProductFeature3" Title="Tit" Level="1" Description='Yeah' ConfigurableDirectory='INSTALLLOCATION' Display='expand'
         AllowAdvertise='no'>
  <MergeRef Id='MyModule3' />
  <ComponentGroupRef Id="Product.Generated" />
</Feature>

构建 WIX 项目后,它会抛出如下错误:

ICE83:MsiPublishAssemblies 和 MsiUnpublishAssemblies 操作都必须出现在 InstallExecuteSequence 表中。 ICE83:MsiPublishAssemblies 操作必须出现在 AdvtExecuteSequence 表中。

我添加了几行:

<InstallExecuteSequence>
  <Custom Action="PreventDowngrading"
     After="FindRelatedProducts">NEWPRODUCTFOUND</Custom> //i suppose it doesnt influence nothing here
  <MsiPublishAssemblies Sequence="1502" />
  <MsiUnpublishAssemblies Sequence="1501" />
</InstallExecuteSequence>

并且:

 <AdvertiseExecuteSequence>
  <MsiPublishAssemblies Sequence="1502" />
</AdvertiseExecuteSequence>

在构建过程之后不会返回任何错误,但是尽管安装了该功能(在功能列表中选择),但 HDD 上没有功能文件。我认为这可能是由序列号引起的,但我没有任何想法如何修复它们,任何人都可以帮忙吗?

如果需要更多信息,我一定会提供。

it might be a stupid question, but i've spent few hours testing various possibilities and didn't find the answer.

I have one standard merge module prepared in VS 2005 (its probably fine, i've prepared standard VS 2005 setup project, included the merge module and it worked properly)

Wix project(mainly because GUI reasons) to take care about the installation. Code samples(shortened for brevity)

Directories part:

<Directory Id="INSTALLLOCATION" Name="sth">
      <Merge Id='MyModule3' Language='1033' SourceFile='MergeModule.msm' DiskId='1' />
</Directory>

Feature part:

<Feature Id="ProductFeature3" Title="Tit" Level="1" Description='Yeah' ConfigurableDirectory='INSTALLLOCATION' Display='expand'
         AllowAdvertise='no'>
  <MergeRef Id='MyModule3' />
  <ComponentGroupRef Id="Product.Generated" />
</Feature>

After building WIX project it throws errors like:

ICE83: Both MsiPublishAssemblies AND MsiUnpublishAssemblies actions MUST be present in InstallExecuteSequence table.
ICE83: The MsiPublishAssemblies action MUST be present in AdvtExecuteSequence table.

I've added lines:

<InstallExecuteSequence>
  <Custom Action="PreventDowngrading"
     After="FindRelatedProducts">NEWPRODUCTFOUND</Custom> //i suppose it doesnt influence nothing here
  <MsiPublishAssemblies Sequence="1502" />
  <MsiUnpublishAssemblies Sequence="1501" />
</InstallExecuteSequence>

And:

 <AdvertiseExecuteSequence>
  <MsiPublishAssemblies Sequence="1502" />
</AdvertiseExecuteSequence>

After that buildling process doesn't return any errors, but despite installing the feature (selected on feature list) there are no feature files on the HDD. I think it might be caused by Sequence numbers but i haven't got any ideas how to fix them, anyone can help?

If more info is needed i'll surely provide it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心碎的声音 2024-11-07 10:33:33

我能想到很多可能出错的事情。我会查看安装日志以查看文件是否已安装,只是没有安装到您期望的安装位置。我知道 VDPROJ MSM 有很多问题,包括错误地编写目录表。

您可能想查看我创建的一个名为 IsWiX (CodePlex.com) 的开源项目。它被设计为 WiX 合并模块项目的 UI 创作工具,还允许您使用传统 WiX XML 添加额外元数据的原始能力。结果是一个非常干净的合并模块,可供 InstallShield、WiX、VDPROJ 等使用。

I can think of a number of things that can go wrong. I'd look at the install log to see if the files got installed, just not where you were expecting them to get installed. I've known VDPROJ MSM's to have a great many problems including authoring their directory tables incorrectly.

You might want to look at an open source project that I created called IsWiX (CodePlex.com). It's designed be a UI authoring tool for WiX Merge Module projects that also allows you the raw ability to add additional metadata using traditional WiX XML. The result is a very clean merge module that can be consumed by InstallShield, WiX, VDPROJ, et al.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文