Get current version OS in Windows 10 in C#(使用 C# 在 Windows 10 中获取当前版本的操作系统)
问题描述
我使用 C#.我尝试获取当前版本的操作系统:
I Use C#. I try to get the current version of the OS:
OperatingSystem os = Environment.OSVersion;
Version ver = os.Version;
我使用的是 Windows 10:6.2.
但 6.2 是 Windows 8 或 WindowsServer 2012 (在 .net 中检测 Windows 版本)
But 6.2 is Windows 8 or WindowsServer 2012 (Detect Windows version in .net)
我找到了以下解决方案(如何检测我的应用程序是否在 Windows 10 上运行).
I found the following solution (How can I detect if my app is running on Windows 10).
static bool IsWindows10()
{
var reg = Registry.LocalMachine.OpenSubKey(@"SOFTWAREMicrosoftWindows NTCurrentVersion");
string productName = (string)reg.GetValue("ProductName");
return productName.StartsWith("Windows 10");
}
这是在 C# 中获取当前版本的最佳方法吗?
This is the best way to get the current version in C#?
推荐答案
添加应用程序清单 到您的应用程序并添加 supportedOS Id 的 Windows 8.1 和 Windows 10 到清单:
Add application manifest to your application and add the supportedOS Id of Windows 8.1 and Windows 10 to the manifest:
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- Windows 10 -->
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
<!-- Windows 8.1 -->
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
</application>
</compatibility>
现在 Environment.OSVersion
包含适用于 Windows 8.1 和 Windows 10 而不是 6.2 的正确数据,以表明您运行的是 Windows 8.这是一个 自 Windows 8.1 起的更改.
Now Environment.OSVersion
includes the correct data for Windows 8.1 and Windows 10 and not 6.2 to indicate you run Windows 8. This is a change since Windows 8.1.
这篇关于使用 C# 在 Windows 10 中获取当前版本的操作系统的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 C# 在 Windows 10 中获取当前版本的操作系统
- 使用 rss + c# 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01