Celeb Glow
general | March 01, 2026

How to find the build / UBR / kernel version of Windows 10 using command-line (cmd)

I would like to know the basic commands in prompt windows. Therefore, I want to begin by knowing the command that return details of my operating system like kernel version / build and UBR (Update Build Revision).

2

2 Answers

I want to know my OS kernel version / build and UBR (Update Build Revision).

Use the following command in a cmd shell:

systeminfo | findstr /B /C:"OS Name" /C:"OS Version"

Example output:

> systeminfo | findstr /B /C:"OS Name" /C:"OS Version"
OS Name: Microsoft Windows 10 Enterprise
OS Version: 10.0.14393 N/A Build 14393

And in PowerShell:

Get-CimInstance Win32_OperatingSystem | Select-Object Caption, CSDVersion, ServicePackMajorVersion, BuildNumber | FL

Example output:

Caption : Microsoft Windows 10 Enterprise
CSDVersion :
ServicePackMajorVersion : 0
BuildNumber : 14393

Or:

[System.Environment]::OSVersion.Version

Example output:

> [System.Environment]::OSVersion.Version
Major Minor Build Revision
----- ----- ----- --------
10 0 14393 0

Further Reading

1

Run this from the cmd prompt:

c:\> ver
Microsoft Windows [Version 10.0.17763.1158]

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy