WiX 注册表搜索返回 C:\ 而不是预期路径

发布于 2024-09-26 06:50:28 字数 347 浏览 3 评论 0原文

我在 WiX 中使用以下注册表搜索,

  <Property Id="VISUALSTUDIODIR">
      <RegistrySearch Id="VISUALSTUDIODIRCMD" Type="raw" Root="HKLM" 
      Key="Software\Microsoft\VisualStudio\10.0" Name="InstallDir" Win64="yes" />
  </Property>

不幸的是,路径解析为 C:\ 而不是所需的路径。有人可以帮助我理解为什么吗? (注册表路径存在 - 我检查过。)

I'm using the following registry search in WiX

  <Property Id="VISUALSTUDIODIR">
      <RegistrySearch Id="VISUALSTUDIODIRCMD" Type="raw" Root="HKLM" 
      Key="Software\Microsoft\VisualStudio\10.0" Name="InstallDir" Win64="yes" />
  </Property>

Unfortunately, the path resolves to C:\ instead of the required path. Can someone help me understand why? (The registry path exists - I checked.)

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

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

发布评论

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

评论(2

苄①跕圉湢 2024-10-03 06:50:28

如果删除 Win64 属性会发生什么?
我一直在使用以下内容,没有任何问题:

<Property Id="VSINSTALLDIR" Secure="yes">
  <RegistrySearch Id="VSInstallRegistry" Root="HKLM" Key="Software\Microsoft\VisualStudio\10.0" Name="InstallDir"  Type="directory" />
</Property>

What happens if you remove the Win64 attribute?
I have been using the following without any problems:

<Property Id="VSINSTALLDIR" Secure="yes">
  <RegistrySearch Id="VSInstallRegistry" Root="HKLM" Key="Software\Microsoft\VisualStudio\10.0" Name="InstallDir"  Type="directory" />
</Property>
等风来 2024-10-03 06:50:28

我不确定为什么注册表搜索在您的情况下不起作用。但是您是否尝试过引用 WiX 提供的标准 VS 属性?

从 WiX v3.5 开始 VSExtension 提供了许多包含有关 VS 的各种信息的属性2010。例如,VS2010_ROOT_FOLDER 包含 Visual Studio 2010 根安装目录的完整路径。

I'm not sure why the registry search doesn't work in your case. But have you tried referencing the standard VS properties provided by WiX instead?

Starting from WiX v3.5 VSExtension offers a number of properties containing various info about VS 2010. For instance, VS2010_ROOT_FOLDER contains full path to the Visual Studio 2010 root installation directory.

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