在这个page中,有类似的东西:
Windows Server 2008 6.0
Windows Vista 6.0
GetVersionEx()
返回版本号(即6.0),但正如您所看到的,此数字可以映射到两个不同的Windows版本!
那么有没有办法确切了解我的Windows版本?
答案 0 :(得分:1)
GetVersionInfoEx API会返回完全填充的OSVERSIONINFOEX structure(如果已请求)。 documentation包含完整的表格,以及如何区分具有相同版本号的操作系统版本的说明:
下表总结了受支持的Windows版本返回的值。使用标有"其他"的列中的信息。区分具有相同版本号的操作系统。
对于您的特定示例,您需要将OSVERSIONINFOEX.wProductType
与VER_NT_WORKSTATION
进行比较。如果它相同,则您使用的是Windows Vista,否则您使用的是Windows Server 2008。
要获得Windows 8.1及更高版本的可靠结果,您的应用程序需要表现为兼容。有关在Windows 8.1及更高版本上显示应用程序的说明,请访问Targeting your application for Windows。
示例清单文件:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<assemblyIdentity
type="win32"
name=SXS_ASSEMBLY_NAME
version=SXS_ASSEMBLY_VERSION
processorArchitecture=SXS_PROCESSOR_ARCHITECTURE
/>
<description> my foo exe </description>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel
level="asInvoker"
uiAccess="false"
/>
</requestedPrivileges>
</security>
</trustInfo>
<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}"/>
<!-- Windows Vista -->
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
<!-- Windows 7 -->
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
<!-- Windows 8 -->
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
</application>
</compatibility>
</assembly>
答案 1 :(得分:0)
某些version numbers对应于Windows的客户端和服务器版本。
您可以使用IsWindowsServer功能区分Windows的客户端和服务器版本,将其与版本号相结合,并且您拥有确切的版本。
但是,如果您尝试检测某些功能是否受支持,则检查版本号是否为推荐方式,您可能需要使用LoadLibrary
和GetProcAddress
代替检查功能。