Detecting Windows 10 OS Build minor version

不羁岁月 提交于 2019-12-12 00:59:41

问题


I've created a Bluetooth low-energy library, that due to an issue with Windows 10 Version 1709, only works for OS Build 16299.125 and above (fixed in the KB4054517 update). For earlier versions, it causes to BLE device to misbehave and give false connection indications.

Thus, I wish to check for the existence of this update on the client machine, and prevent the library from running if the version is too low.

I've followed this SO answer, and used RtlGetVersion() to get the OS version. However, as far as I can tell, no field in the returned structure contains the minor part of the build version (e.g. '125' in '16299.125'), AKA 'Update Build Revision' or UBR.

This is true even when calling RtlGetVersion() with the extended structure (RTL_OSVERSIONINFOEXW).

Is there a reliable way of getting the minor version of the OS build?


回答1:


This UBR value is stored in Registry under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion in a DWORD which you can query



来源:https://stackoverflow.com/questions/47926094/detecting-windows-10-os-build-minor-version

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!