Windows 10 Exact Build Version
Hi,
I was wondering is there a way or somewhere in the inventory that pulls the complete Windows 10 Build version out?
For example i know it will display 10.0.14393 for Windows 10 Build 1607
But it doesn't show the underlying build within that. For example 14393.1198.
Thanks
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
Nico_K
7 years ago
Use a Custom Inventory Rule
RegistryValueReturn(HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion,ReleaseID,REG_SZ)
for the official Build:
RegistryValueReturn(HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion,ReleaseID,REG_SZ)
for the official Build:
11) CIR 15 - BUILD: | 1703 [string] |
RegistryValueReturn(HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion,CurrentBuild,REG_SZ)
would show 15036 (the 1703 official build)
would show 15036 (the 1703 official build)