Knowing the exact version of Windows running on your machine is essential for troubleshooting, installing compatible software, and understanding security updates. This guide provides several reliable methods to check your Windows version, whether you need the edition, the build number, or the feature update name.
Using the Settings App
The Settings app offers a modern, user-friendly interface to view your system information. This method is recommended for most home users who prefer a graphical approach over command-line tools.
Step-by-step via Settings
Press Windows key + I to open Settings.
Click on System and then select About from the left-hand menu.
Under the Device specifications section, locate the System type entry to see if you are running a 32-bit or 64-bit version.
More specific version details, such as the edition and OS build, are found under the Windows specifications section.
Leveraging the System Information Utility
The System Information tool provides a comprehensive data dump about your hardware and software configuration. It is particularly useful when you need detailed information for support purposes.
How to open System Information
Press Windows key + R to open the Run dialog.
Type msinfo32 and press Enter.
Look for the OS Name field, which displays the edition, and the Version field, which shows the specific build number and release type.
Command Line Efficiency with Command Prompt
For users comfortable with terminal commands or those managing multiple machines, the Command Prompt offers quick and precise results. This method is efficient for scripting and remote diagnostics.
Executing systemversion checks
Open Command Prompt by searching for cmd in the Start menu.
Type systeminfo and press Enter to generate a full system report.
To get a concise output, type ver and press Enter, which displays the current build number directly.
Utilizing PowerShell for Advanced Users
PowerShell provides more robust cmdlets that allow for filtering and formatting the output. It is the preferred tool for IT professionals who need to query system data programmatically.
PowerShell cmdlets
Open Windows PowerShell from the Start menu.
Enter the command (Get-CimInstance -ClassName Win32_OperatingSystem).Caption to see the edition name.
To retrieve the build number, run (Get-CimInstance -ClassName Win32_OperatingSystem).BuildNumber .
Checking the Winver Utility
The winver command triggers a small dialog box that confirms your current build and edition. While it does not show the bit architecture, it is the fastest way to confirm your build number visually.
Running winver
Press Windows key + R .
Type winver and press Enter.
A pop-up window will display the edition (such as Windows 10 Pro) and the installed OS build.