获取Windows的版本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取Windows的版本相关的知识,希望对你有一定的参考价值。

void CtestThreadDlg::OnBnClickedButton3()
{
	HKEY hKey;
	DWORD dwType = REG_SZ;
	DWORD dwSize = 255;//须指定长度,否则第一次读取RegQueryValueEx不成功,仅返回长度
	WCHAR data[MAX_PATH];
	bool ret;


	if (RegOpenKey(HKEY_LOCAL_MACHINE, _T("SOFTWARE\\Microsoft\\Windows NT\	CurrentVersion"), &hKey) == ERROR_SUCCESS)
	{
	    TRACE(_T("未找到此键"));
	    return;
        }
	ret = RegQueryValueEx(hKey, _T("ProductName"),
							NULL,
							& dwType,
							(LPBYTE)data,
							& dwSize) == ERROR_SUCCESS;

	RegCloseKey(hKey);
	ret = wcscmp(data, _T("Windows 10 Pro")) == 0;
	
	CString str;
	str.Format(_T("%d"), ret);
	TRACE(str);
}

WIN10+VS2015编译通过.

以上是关于获取Windows的版本的主要内容,如果未能解决你的问题,请参考以下文章

以编程方式获取 Windows 操作系统版本

在 Python 中获取当前的 Windows 11 版本

在 Windows 上获取 Ansible 以打印版本

使用 gcc c++ 获取 Windows 版本

获取Windows平台下 安装office 版本位数信息

如何在 Windows 中使用命令提示符获取 chrome 版本