In many cases you need to know what is the operating system version on Windows 10 currently? Or want to check if the current version is the latest operating system version. In this article, QTitHow will show you how to check the operating system on Windows 10. See details below. 

How to do:
Here are 5 ways from basic to advanced to help you check the current OS version of Windows 10 on your computer. If you are a normal user, you should use the first method.

Method 1: Using Run 

Step 1: Press Windows + R (hotkey)

Step 2: Type winver, then Enter 



This is result:



Method 2: Check by Settings
 

Step 1: Press Windows (hotkey), choose Settings  



Step 2: Choose System > About. Under Windows specifications, check which edition and version of Windows your device is running.



Method 3: Using PowerShell
 

Step 1: Press Windows + X (hotkey), click to Windows PowerShell(Admin)


 

Step 2: Type command line as below:

wmic os get version


Then, press the Enter key to execute it and see the information.
The Version number tells you the build of Windows 10 you have installed. In the earlier example, the build number is 19044, which comes after 10.0. With this number, you can then make sense of the exact Windows 10 version you’re using. 


Method 4: Using WMIC (WMI command-line tool) 

Step 1: Press Windows (hotkey), type Command Prompt. And then right mouse to it choose Run as Administrator.


 


Step 2: Open a Command Prompt window and type:

For check Build Number: wmic os get BuildNumber

For check version: wmic os get version




Method 5: Using WMIC (Advanced)
 

Step 1: Press Windows (hotkey), type Command Prompt. And then right mouse to it choose Run as Administrator.
Step 2: Open a Command Prompt window and type:

wmic os get Caption, Version, BuildNumber, OSArchitecture

With this command, you can see detail information of OS version Windows 10 Build that using.