Knowing the precise version, build number, and edition of Windows 11 running on your device is essential for troubleshooting, verifying compatibility, and ensuring you receive the latest features and security updates. Differences between versions and builds can impact available features, system stability, and support eligibility. Here’s how to quickly and accurately check this information using several reliable methods.
Check Version and Build Using the winver Command
Windows + R on your keyboard to open the Run dialog box. This shortcut provides direct access to various Windows tools.

Join readers who trust AllThings.How
Add us as a preferred source on Google so our practical guides show up first next time you search.
Add to Google Preferences →View Version and Build in Windows Settings
Windows + I or by right-clicking the Start button and selecting Settings.

Get Version Details Using System Information


Check Version and Build from Command Prompt or PowerShell

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

This command filters the output to show only the relevant version and build details. For a more concise output, you can also use:
wmic os get BuildNumber,Caption,version

These commands are particularly useful for scripting, remote administration, or when working on systems without a graphical interface.
Identify Version and Build from an Installation ISO or USB
When preparing to install or troubleshoot Windows 11 using installation media, knowing the version and build on the ISO or USB ensures you’re using the correct release. This is especially important for system administrators or users managing multiple devices.
D:\sources\install.wim with your actual path):dism /Get-WimInfo /WimFile:D:\sources\install.wim
This command lists all available images in the WIM file, showing the edition, version, and build number. On Linux systems, similar details can be extracted using wiminfo from the wimtools package.
Alternative: Check the properties of setup.exe in the ISO. Right-click, choose Properties, and view the Details tab. The product version field often aligns with the build number (e.g., 22000 for Windows 11 21H2, 22621 for 22H2).
Distinguishing Stable and Insider Builds
Windows 11 stable releases use version numbers like 23H2 or 24H2. Insider Preview builds typically display “Insider Preview” in the version information or have build numbers significantly higher than the latest public release (for example, builds in the 26xxx range). Use the winver command or the Settings app to confirm your channel. If your system lists a feature update like 23H2 or 24H2 and does not mention “Insider Preview,” you’re on a stable build.
Additional Tips for Version Management
- To update to the latest Windows 11 build, go to Settings > Windows Update and select Check for updates.
- For feature upgrades (e.g., moving from 22H2 to 23H2), updates may be optional at first and require manual installation.
- If you need to confirm device compatibility or troubleshoot missing features, always check both the edition (Home, Pro, Enterprise) and version/build.
Checking your Windows 11 version and build number is quick and reliable using these built-in tools and commands. Keeping track of this information streamlines troubleshooting, ensures compatibility, and helps you stay current with Microsoft’s updates.






