Knowing the exact version of Windows running on a machine is essential for troubleshooting, installing compatible software, and verifying security updates. This guide provides multiple methods to identify your current Windows edition and build number quickly.
Using the Settings Application
The Settings app offers a modern, user-friendly interface for checking your system information. It is the recommended method for most home users who prefer a visual approach over command-line tools.
Step-by-step Navigation
Open the Start menu and click on the Settings gear icon.
Select System from the left-hand menu.
Scroll down and click on About at the bottom of the list.
Locate the Windows specifications section to view the Edition, Version, and OS build.
Utilizing the System Information Tool
The System Information utility provides a comprehensive overview of your hardware and software configuration. This tool generates a detailed report that includes the specific Windows version and additional technical details.
Generating the Report
Press Windows + R to open the Run dialog box.
Type msinfo32 and press Enter.
Once the System Information window opens, look for the OS Name and System Type entries.
To save this information, go to File and select Export.
Command Prompt Techniques
For users comfortable with terminal commands, Command Prompt offers the fastest way to query the Windows version. This method is particularly useful for scripting or when the graphical interface is unavailable.
Executing Commands
Press Windows + X and select Command Prompt or Windows Terminal.
Alternatively, the command ver will display the version number directly.
The wmic os get Caption, Version, BuildNumber command provides a clean list of identifiers.
PowerShell for Advanced Users
PowerShell provides a more powerful and flexible scripting environment compared to Command Prompt. It is the preferred method for IT professionals managing multiple machines.
PowerShell cmdlets
Open Windows PowerShell from the Start menu.
To retrieve only the version, use the command (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").CurrentVersion.
The Get-WmiObject -Class Win32_OperatingSystem command returns detailed object properties including Caption and BuildNumber.
Checking the Winver Utility
The winver command opens a small dialog box that displays the Windows edition and version number. It is a quick graphical tool that does not require navigating through complex menus.
Execution and Output
Press Windows + R to open the Run dialog.
Type winver and press Enter.
A popup window will appear showing the Edition and Version, along with the build number.
This method provides immediate visual confirmation without opening additional panels.
Viewing the System Properties Menu
The System Properties window contains a dedicated section that reveals the Windows version and the registered owner. It also allows access to advanced system settings if needed.
Accessing the Properties
Right-click on the This PC icon on the desktop or in File Explorer.
Select Properties from the context menu.