确定最高 .NET Framework 版本

发布于 2024-07-06 12:36:38 字数 161 浏览 8 评论 0原文

我需要从 C\C++ 代码确定桌面计算机上安装的最高 .NET Framework 版本。 看起来我可以迭代 %systemroot%\Microsoft.NET\Framework 下的文件夹,但这似乎很容易出错。 有没有更好的办法? 也许我可以检查一个注册表项? 谢谢。

I need to determine the highest .NET framework version installed on a desktop machine from C\C++ code. Looks like I can iterate the folders under %systemroot%\Microsoft.NET\Framework, but that seems kind of error prone. Is there a better way? Perhaps a registry key I can inspect? Thanks.

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

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

发布评论

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

评论(4

怪我入戏太深 2024-07-13 12:36:38

使用 Windows 注册表位置 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP< /代码>。

Use the Windows Registry location HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP.

甜心 2024-07-13 12:36:38

.NET Framework 的注册表项如下所示:

HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework Setup\NDP\

根据版本的不同,注册表项的其余部分将有所不同(请检查 此页面)。

您可以在 MSDN 文章使用注册表中查找如何访问注册表在 C++ 应用程序中

Registry keys for the .NET Framework start like this:

HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework Setup\NDP\

Depending on the version, the rest of the key will be different (check this page).

You can look up how to access the registry in MSDN article Using the registry in a C++ application.

山有枢 2024-07-13 12:36:38

如果您尝试通过托管代码执行此操作,请查看这篇文章,它包含确定是否安装特定框架版本所需的所有逻辑。

否则,请在此处查看 Aaron 的博客文章 ,它提供了执行相同操作的 C/C++ 方法。

If you're trying to do this from managed code, take a look at this article, which wraps all of the logic needed to determine if a specific Framework version is installed.

Otherwise, take a look at Aaron's blog post here, which gives a C/C++ method for doing the same thing.

揽清风入怀 2024-07-13 12:36:38

以下内容应该给你答案,但它看起来非常糟糕:(

c:\Program Files>clrver
Versions installed on the machine:
v2.0.50727

The following is supposed to give you the answer, but it seems horribly broken :(

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