让你的应用程序面向 Windows

在 Windows 8.1 及更高版本中,已弃用 GetVersionGetVersionEx 函数。 截至Windows 10,VerifyVersionInfo 函数也已弃用。 你仍然可以调用已弃用的函数,但如果应用程序不专门面向Windows 8.1或更高版本,则函数将返回Windows 8版本 (6.2) 。

注意

GetVersionGetVersionExVerifyVersionInfo版本帮助程序函数 仅适用于桌面应用。 通用 Windows 应用可以将 AnalyticsInfo.VersionInfo 属性用于遥测和诊断日志。

为了使应用以Windows 8.1或更高版本为目标,需要包含应用 (可执行文件) 清单。 然后,在 <清单的兼容性> 部分中 ,需要为每个要声明应用支持的 Windows 版本添加 <supportedOS> 元素。

以下示例显示了一个应用清单文件,该文件支持从 Windows Vista 到 Windows 11的所有 Windows 版本:

<!-- example.exe.manifest -->
<?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="Contoso.ExampleApplication.ExampleBinary"
        version="1.2.3.4"
        processorArchitecture="x86"
    />
    <description>Contoso Example Application</description>
    <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
        <application>
            <!-- Windows 10 and Windows 11 -->
            <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
            <!-- Windows 8.1 -->
            <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
            <!-- Windows 8 -->
            <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
            <!-- Windows 7 -->
            <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
            <!-- Windows Vista -->
            <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> 
        </application>
    </compatibility>
    <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
        <security>
            <requestedPrivileges>
                <!--
                  UAC settings:
                  - app should run at same integrity level as calling process
                  - app does not need to manipulate windows belonging to
                    higher-integrity-level processes
                  -->
                <requestedExecutionLevel
                    level="asInvoker"
                    uiAccess="false"
                />   
            </requestedPrivileges>
        </security>
    </trustInfo>
</assembly>

在以前的操作系统上运行应用时,在应用清单中声明对 Windows 8.1 或更高版本的支持不会有任何影响。

上述应用清单还包括 trustInfo<> 部分,该节指定系统应如何处理用户帐户控制 (UAC) 。 添加 trustInfo 并不是必需的,但强烈建议添加它,即使你的应用不需要任何与 UAC 相关的特定行为。 具体而言,如果你根本不添加 trustInfo ,则 32 位版本的 x86 应用将受到 UAC 文件虚拟化的约束,这样,当管理员特权文件夹(如 Windows 系统文件夹)失败时,写入会成功,但会将其重定向到特定于用户的“VirtualStore”文件夹。