Detecting Windows 10 for cross-platform compatibility can be challenging due to inaccuracies in available functions like IsWindows10OrGreater(). This article explores a cross-platform and multi-version approach to solve this problem.
The most reliable method for retrieving the true OS version is to call RtlGetVersion. This function avoids the compatibility shims used by GetVersionEx and VerifyVersionInfo. It can be accessed through dynamic linking as shown in the following code snippet:
RTL_OSVERSIONINFOW GetRealOSVersion() {
HMODULE hMod = ::GetModuleHandleW(L"ntdll.dll");
if (hMod) {
RtlGetVersionPtr fxPtr = (RtlGetVersionPtr)::GetProcAddress(hMod, "RtlGetVersion");
if (fxPtr != nullptr) {
RTL_OSVERSIONINFOW rovi = { 0 };
rovi.dwOSVersionInfoSize = sizeof(rovi);
if ( STATUS_SUCCESS == fxPtr(&rovi) ) {
return rovi;
}
}
}
RTL_OSVERSIONINFOW rovi = { 0 };
return rovi;
}
This method returns the expected results on Windows 10, even in the absence of a manifest.
Instead of relying on OS versions, it is recommended to implement feature-based solutions. This provides a more flexible and future-proof approach.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3