Knowing the exact Windows version installed on your computer can be useful when installing drivers, checking software compatibility, troubleshooting errors, or following a Windows-specific tutorial. Windows 11 has several ways to view this information, but Command Prompt provides a quick method that does not require navigating through multiple Settings pages.
You can use simple commands to find the Windows version, build number, edition, system architecture, and other operating system information. These commands work directly from Command Prompt and can also be useful when Windows is experiencing problems with its graphical interface.
Method 1: Use the VER Command
The ver command is one of the quickest ways to check the Windows version.
- Press Windows + R.
- Type:
cmd
- Press Enter.
- Type the following command:
ver
- Press Enter.
Command Prompt will display the Windows version information.
The command provides a basic version number, but it does not show as much information as some of the other methods in this guide.
Method 2: Use the Systeminfo Command
The systeminfo command provides much more detailed information about Windows.
- Open Command Prompt.
- Type:
systeminfo
- Press Enter.
- Wait for Windows to collect the system information.
You will see information such as:
- OS Name
- OS Version
- OS Build
- OS Manufacturer
- System Manufacturer
- System Model
- System Type
- Installed RAM
- Windows installation date
- System boot time
- Windows directory
- System directory
For checking the exact Windows build, the OS Version and OS Build entries are particularly useful.
Because systeminfo displays a large amount of information, you may need to scroll through the Command Prompt window to find the Windows version.
Method 3: Display Only the Windows Version
If you want a cleaner result instead of the complete systeminfo output, you can filter the command.
Open Command Prompt and run:
systeminfo | findstr /B /C:"OS Name" /C:"OS Version"
Press Enter.
Windows will display the operating system name and version information.
This is useful when you need to quickly copy the Windows version into a support request or compare it with another computer.
Depending on the Windows language and configuration, the output text may differ, so the filter may not work exactly the same way on every localized Windows installation.
Method 4: Use WMIC to Check the Windows Version
On Windows installations where WMIC is available, you can use it to retrieve operating system information.
Open Command Prompt and enter:
wmic os get Caption,Version,BuildNumber
Press Enter.
The result can show:
- Windows edition
- Version
- Build number
For example, the output can identify the installed Windows edition and provide the numerical build information.
However, WMIC is a legacy Windows management tool and may not be available or enabled on every newer Windows 11 installation. If the command is not recognized, use systeminfo or another method in this guide.
Method 5: Use the WINVER Command
Although winver opens a graphical window, it can still be launched from Command Prompt and is one of the easiest ways to see the Windows version.
- Open Command Prompt.
- Type:
winver
- Press Enter.
The About Windows window will appear.
It shows information about the Windows release and build installed on the computer.
You can also run the same command directly from Windows + R.
The winver method is particularly useful when you want a simple visual confirmation rather than a long list of system information.
Method 6: Check the Windows Build Number With Command Prompt
The Windows build number is useful when troubleshooting compatibility problems or determining whether a specific Windows update or release is installed.
Run:
systeminfo | findstr /C:"OS Version"
Press Enter.
You can also use:
ver
for a quick version check.
The build number is especially useful when technical instructions require a particular Windows 11 release or build.
Keep in mind that Windows version information and build information are related but not identical. A Windows release can receive updates that change its build number.
Method 7: Use Command Prompt to Check Whether Windows Is 64-Bit
Sometimes checking the Windows version also requires knowing whether the operating system is 32-bit or 64-bit.
Run:
systeminfo | findstr /C:"System Type"
Press Enter.
You should see the system architecture information.
On most modern Windows 11 PCs, the operating system is 64-bit. However, checking the actual system information is useful before installing drivers or software that has separate 32-bit and 64-bit versions.
You can also run:
echo %PROCESSOR_ARCHITECTURE%
This displays the processor architecture reported by the current Windows environment.
Method 8: Save Windows Version Information to a Text File
If you need to send your Windows information to technical support, you can save the Command Prompt output to a text file.
Open Command Prompt and run:
systeminfo > "%USERPROFILE%\Desktop\systeminfo.txt"
Press Enter.
Windows will create a file named systeminfo.txt on your desktop.
Open the file to view the collected system information.
This can be useful when troubleshooting a computer remotely because you can provide details such as the Windows edition, build, system model, processor information, and installed memory without manually copying every line from Command Prompt.
What Is the Difference Between Windows Version, Edition, and Build?
These terms are often used interchangeably, but they provide different information.
The edition identifies the Windows product, such as Windows 11 Home or Windows 11 Pro.
The version or release identifies the major Windows release installed on the computer.
The build number identifies a more specific Windows software build. It can change when Microsoft releases updates.
When a software developer or support technician asks for your Windows version, it can be helpful to provide the edition, release, and build number rather than only saying that you are using Windows 11.
Which Command Should You Use?
For a quick check, use:
ver
For detailed information, use:
systeminfo
For a simple graphical version window launched from Command Prompt, use:
winver
If you are troubleshooting a specific problem, systeminfo is generally more useful because it provides considerably more information about the operating system and hardware.
Conclusion
Checking the Windows version through Command Prompt is quick and useful when you need accurate operating system information. The simple ver command provides a quick version check, while systeminfo provides a much more detailed report containing the Windows edition, version, build, system type, manufacturer, memory, and other information.
You can also use winver from Command Prompt when you want a simple graphical window showing Windows release information. For systems where WMIC is still available, it can provide additional version and build details, although it is an older Windows management utility.
If you regularly provide technical support, the systeminfo command is particularly useful because its output can be saved to a text file and shared when diagnosing Windows problems.
FAQs
1. What is the Command Prompt command to check the Windows version?
The simplest command is:
ver
For more detailed information, use:
systeminfo
2. How do I check the Windows 11 build number?
Open Command Prompt and run:
systeminfo | findstr /C:"OS Version"
You can also use winver to view Windows release and build information in a graphical window.
3. Can I check Windows version without opening Settings?
Yes. Command Prompt can provide Windows version information using commands such as ver, systeminfo, and winver.
4. Can I save Windows information from Command Prompt?
Yes. Run:
systeminfo > "%USERPROFILE%\Desktop\systeminfo.txt"
This saves the system information to a text file on your desktop.
Quick Summary
- Use
verfor a quick Windows version check. - Use
systeminfofor detailed Windows and hardware information. - Use
winverto open the About Windows window from Command Prompt. - You can save
systeminforesults to a text file for troubleshooting or technical support.






