如何让 WiX 安装程序强制 VS 安装模板?

发布于 2024-12-02 10:09:39 字数 582 浏览 0 评论 0原文

我有一个 WiX 安装程序,用于在安装 VS 2010 模板后更新它们。我使用的代码如下:

<CustomAction
      Id="InstallTemplates"
      ExeCommand="&quot;[VISUALSTUDIODIR]devenv.exe&quot; /installvstemplates"
      Directory="VISUALSTUDIODIR"
      Execute="commit"
      Return="check"
      HideTarget="no"
      Impersonate="no"/>


<InstallExecuteSequence>
  <Custom Action="InstallTemplates" Before="InstallFinalize"></Custom>
</InstallExecuteSequence>

在上面,VISUALSTUDIODIR 指的是正确的位置,并且模板已正确部署。但是,似乎该命令没有被调用,因此实际上没有安装任何模板。我做错了什么?

I've got a WiX installer that is meant to update VS 2010 templates after installing them. The code I'm using is as follows:

<CustomAction
      Id="InstallTemplates"
      ExeCommand=""[VISUALSTUDIODIR]devenv.exe" /installvstemplates"
      Directory="VISUALSTUDIODIR"
      Execute="commit"
      Return="check"
      HideTarget="no"
      Impersonate="no"/>


<InstallExecuteSequence>
  <Custom Action="InstallTemplates" Before="InstallFinalize"></Custom>
</InstallExecuteSequence>

In the above, VISUALSTUDIODIR refers to the correct location, and templates are correctly deployed. However, it seems that the command does not get called, so no templates are actually installed. What am I doing wrong?

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

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

发布评论

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

评论(2

坐在坟头思考人生 2024-12-09 10:09:39

WiX 具有执行此操作的内置功能。添加对 WixVSExtension.dll 的引用并添加以下创作:

WiX has built-in functionality to do that. Add a reference to WixVSExtension.dll and add the following authoring:

<CustomActionRef Id="VS2010InstallVSTemplates" />

清风夜微凉 2024-12-09 10:09:39

确保 VISUALSTUDIODIR 是 MSI 包中的实际目录(它保存在目录表中)。这是此类自定义操作的要求。

另外,尝试创建安装日志并搜索您的自定义操作以查看会发生什么。

Make sure that VISUALSTUDIODIR is an actual directory in your MSI package (it's saved in Directory table). This is a requirement for this type of custom action.

Also, try creating an installation log and search for your custom action to see what happens.

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