Determine if O/S is Windows 7(确定操作系统是否为 Windows 7)
问题描述
正在处理一个项目,需要能够确定操作系统是 Windows 7、Vista 还是默认为 XP.我知道我可能会遇到 Win2K 和更早的版本,但我们只是说这不是问题,因为其他代码会在它到达这一点之前捕捉到它.我的应用程序将在 C++ 中暂时使用 VS2005.我找到了类似的文章和示例代码,但它们对于我的用途来说似乎有些臃肿.只是在寻找一个快速而肮脏的回报.
Working on a project and need to be able to determine whether the O/S is Windows 7, Vista or default to XP. I understand I could run into Win2K and earlier versions but let's just say that's not a concern as other code will catch that before it gets to this point. My application will be in C++ for the time being using VS2005. I've found articles and sample code alike but they seem way bloated for my uses. Just looking for a quick and dirty return.
http://msdn.microsoft.com/en-us/library/ms724358%28VS.85%29.aspx
推荐答案
列表 Windows 版本,使用 <代码>GetVersionEx:
List of Windows Version, using GetVersionEx
:
Version Number Description
6.1 Windows 7 / Windows 2008 R2
6.0 Windows Vista / Windows 2008
5.2 Windows 2003
5.1 Windows XP
5.0 Windows 2000
这篇关于确定操作系统是否为 Windows 7的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:确定操作系统是否为 Windows 7


基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01