System Find Windows 11 Build Number


Windows_11_banner.png

This tutorial will show you how to find and see what the build number of the installed Windows 11 is on your PC.

References:

Version
Build
Release Date
21H222000.194October 4, 2021
22H222621.521September 20, 2022
23H222631.2506October 31, 2023
24H226100.1742October 01, 2024


Contents

  • Option One: Find Windows 11 Build Number in Watermark on Desktop
  • Option Two: Find Windows 11 Build Number in About Windows
  • Option Three: Find Windows 11 Build Number in Settings
  • Option Four: Find Windows 11 Build Number in System Information (msconfig)
  • Option Five: Find Windows 11 Build Number in Command Prompt
  • Option Six: Find Windows 11 Build Number in PowerShell
  • Option Seven: Find Windows 11 Build Number in Registry Editor




Option One

Find Windows 11 Build Number in Watermark on Desktop


If you have a Windows 11 Insider Preview build installed, then you will have a watermark at the bottom right corner of your desktop.


1 Look at the watermark to see what the build number is. (see screenshot below)

build_number_watermark.png





Option Two

Find Windows 11 Build Number in About Windows


1 Open About Windows (winver.exe).

2 Look to see what the OS Build is. (see screenshot below)

build_number_winver.png





Option Three

Find Windows 11 Build Number in Settings


1 Open Settings (Win+I).

2 Click/tap on System on the left side, and click/tap on About (Win+Pause/Break) on the right side. (see screenshot below)


build_number_Settings-1.png

3 Look to see what the OS Build is under Windows specifications on the right side. (see screenshot below)

build_number_Settings-2.png




Option Four

Find Windows 11 Build Number in System Information (msconfig)


1 Open System Information (msconfig.exe).

2 Click/tap on System Summary in the left pane of System Information. (see screenshot below)

3 Look at the Version item in the right pane to see the build number (ex: "25276").

build_in_Ssystem_Information.png





Option Five

Find Windows 11 Build Number in Command Prompt


1 Open Windows Terminal, and select Command Prompt.

2 Perform one of the following actions: (see screenshot below)
  • Look at the top of the command prompt see what the build number is.
  • Type ver into Windows Terminal, and press Enter.
build_number_command_prompt-1.png
build_number_command_prompt-2.png





Option Six

Find Windows 11 Build Number in PowerShell


1 Open Windows Terminal, and select Windows PowerShell.

2 Copy and paste the command below into Windows Terminal, and press Enter. (see screenshot below)

Get-WmiObject Win32_OperatingSystem | Format-List BuildNumber

3 You will now see the BuildNumber output (ex: "27729").

Windows_build_PowerShell.png





Option Seven

Find Windows 11 Build Number in Registry Editor


1 Open Registry Editor (regedit.exe).

2 Navigate to the key below in the left pane of Registry Editor. (see screenshot below)

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion

3 In the right pane of the CurrentVersion key, look to see what the data shows for the CurrentBuild or CurrentBuildNumber string values (REG_SZ). This will be the build number (ex: "25276").

build_in_regedit.png



That's it,
Shawn Brink


 
Last edited:
Powershell function:

Code:
function get-WindowsVersion {
#  get details of windows versions for printing (may need to know version on particular day)
   $key = "HKLM:\software\microsoft\windows nt\CurrentVersion"
   $pname=(Get-ItemProperty "$key" ProductName).ProductName
   $dis = (Get-ItemProperty "$key" DisplayVersion).DisplayVersion
   $v1 = (Get-ItemProperty "$key" CurrentMajorVersionNumber).CurrentMajorVersionNumber
   $v2 = (Get-ItemProperty "$key" CurrentMinorVersionNumber).CurrentMinorVersionNumber
   $v3 = (Get-ItemProperty "$key" CurrentBuild).CurrentBuild
   $v4 = (Get-ItemProperty "$key" UBR).UBR
   $ed = (Get-ItemProperty "$key" EditionID).EditionID
   $key = "HKLM:\software\microsoft\WindowsSelfHost\Applicability"
   $en = Get-ItemProperty "$key" EnablePreviewBuilds -ErrorAction SilentlyContinue
   $Ins = ""
   if ( $en ) {
      $epb = $en.EnablePreviewBuilds  
      if ( $epb -ne 0 )
        {
        $bn = (Get-ItemProperty "$key" BranchName).Branchname
        $Ins = "$bn channel"
        }
   }
   return "$pname $dis $v1.$v2.$v3.$v4 $Ins"
}

Output:

Windows 10 Pro Dev 10.0.22471.1000 Dev channel

Unfortunately the Major version number and product name still are 10, not 11, in the registry
 

My Computers

System One System Two

  • OS
    Windows 11 Pro x64
    Computer type
    PC/Desktop
    Manufacturer/Model
    DIY Photoshop/Game/tinker build
    CPU
    Intel i9 13900KS P/E cores 5.7/4.4 GHz, cache 5.0 GHz
    Motherboard
    Asus ROG Maximus Z790 Dark Hero
    Memory
    96GB (2x48) G.skill Trident Z5 RGB 6800 MT/s
    Graphics Card(s)
    Asus ROG Strix 4070 Ti OC
    Sound Card
    Onboard Audio, Vanatoo Transparent One; Klipsch R-12SWi Sub; Creative Pebble Pro Minimilist
    Monitor(s) Displays
    Eizo CG2730 ColorEdge, ViewSonic VP2768
    Screen Resolution
    2560 x 1440p x 2
    Hard Drives
    WDC SN850X 4TB nvme, SN850 1TB nvme, SK-Hynix 2 TB P41 nvme, Raid 0: 1TB 850 EVO + 1TB 860 EVO SSD. Sabrent USB-C DS-SC5B 5-bay docking station: 6TB WDC Black, 6TB Ironwolf Pro; 2x 2TB WDC Black HDD
    PSU
    850W Seasonic Vertex PX-850 ATX 3.0/PCI-E 5.0
    Case
    Fractal Design North XL Mesh, Black Walnut
    Cooling
    EKWB 360 Nucleus Dark AIO w/Phanteks T30-120 fans, 1 Noctua NF-A14 Chromax case fan, 1 T30-120 fan cooling memory
    Keyboard
    Keychron Q3 Max TKL with custom GMK Redsuns Red Samuri keycaps, TX Stabs
    Mouse
    Logitech G305 wireless gaming
    Internet Speed
    500 Mb/s down, 12 Mb/s up
    Browser
    Firefox
    Antivirus
    Defender, Macrium Reflect X ;-)
    Other Info
    Runs hot. LOL. SP: P116/E93/M93
    Phangkey Amaterasu V2 Desk Mat
  • Computer type
    Laptop
    Manufacturer/Model
    Apple 13" Macbook Pro 2020 (m1)
    CPU
    Apple M1
    Screen Resolution
    2560x1600
    Browser
    Firefox
I find (Win+Pause) key combination the quickest way for reading the OS Build instantly.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro
    Computer type
    PC/Desktop
    Manufacturer/Model
    Sharkoon SGC1 - RGB
    CPU
    Intel® Core™ i9-10940X - 14 Cores
    Motherboard
    Asus Prime X299-A II
    Memory
    Kingston HyperX Fury RGB 64GB DDR4-3200
    Graphics Card(s)
    NVIDIA RTX 3060 Ti 8GB
    Monitor(s) Displays
    LG Ultra HD
    Screen Resolution
    3840 x 2160
    Hard Drives
    SSD 4000GB Samsung 870 QVO SSD 500GB Crucial MX500 PSSD 2T Samsung T7 SCSI
    PSU
    850W Cooler Master
    Case
    Sharkoon SGC1 - RGB
    Cooling
    Cooler Master H412R
    Keyboard
    Corsair Vengeance-K70-RGB
    Mouse
    CONTUS Gaming Mouse
    Internet Speed
    200 Mbit/s
    Browser
    Chrome
    Antivirus
    Windows Defender
  • Operating System
    Windows 11 Pro
    Computer type
    PC/Desktop
    Manufacturer/Model
    MSI Intel
    CPU
    Intel® Core™ i5-12600KF - 10 Cores
    Motherboard
    MSI Pro B660M-G DDR4
    Memory
    RAIDER GAMING 64GB DDR4-3200
    Graphics card(s)
    MSI GeForce RTX 4060 Ventus 2X Black 8G OC
    Monitor(s) Displays
    Odyssey G70NC
    Screen Resolution
    3840 x 2160, 120 Hz - (HDR)
    Hard Drives
    MSI Spatium M371 500GB + 7x SSD 4TB
    PSU
    550 Watt MSI
    Case
    MSI MAG Forge 112R
    Cooling
    Watercooling MSI MAG CoreLiquid 240R V2 Black
    Internet Speed
    1000/1000 (Mbps)
    Browser
    Brave
    Antivirus
    Windows Defender
You can also use a batch file to get a set of properties
Win10 results.png

Win11 results.png

OS​
Edition​
Type​
Version​
Build​

See ReportOSVersion.bat post [Win10-Win11] - TenForums

I use the batch file as a common subroutine to extract properties required by other scripts.

All the best,
Denis
 

My Computer

System One

  • OS
    Windows 11 Home x64 Version 23H2 Build 22631.3447
The ProductName value that's in the HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion Windows registry key still shows Windows 10 even though it's the official release of Windows 11 so, I had to add 3 extra lines to my old batch code to get it to report 11 instead of 10. :giggle:

Code:
@ECHO OFF
SETLOCAL

FOR /F "tokens=* USEBACKQ" %%F IN (`REG QUERY "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName`) DO SET ProductName=%%F
SET ProductName=%ProductName:*REG_SZ =%
FOR /F "tokens=* Eol= " %%F IN ("%ProductName%") DO SET "ProductName=%%F"

IF DEFINED ProgramFiles(x86) (SET OSType=x64) ELSE (SET OSType=x86)

FOR /F "tokens=* USEBACKQ" %%F IN (`REG QUERY "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v DisplayVersion`) DO SET DisplayVersion=%%F
SET DisplayVersion=%DisplayVersion:*REG_SZ =%
FOR /F "tokens=* Eol= " %%F IN ("%DisplayVersion%") DO SET "DisplayVersion=%%F"

SET UseExpresssion=Ver
FOR /F "tokens=*" %%F IN ('%UseExpresssion%') DO SET OSBuild=%%F
SET OSBuild=%OSBuild:*10.0.=%
FOR /F "tokens=1 delims=." %%A in ("%OSBuild%") DO SET /A V=%%A
SETLOCAL ENABLEDELAYEDEXPANSION
IF !V! GEQ 22000 SET ProductName=%ProductName: 10 = 11 %
SET OSBuild=%OSBuild:~0,-1%

ECHO %ProductName% %OSType% version %DisplayVersion% build %OSBuild%

ENDLOCAL
PAUSE
 

My Computers

System One System Two

  • OS
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Asus TUF Gaming F16 (2024)
    CPU
    i7 13650HX
    Memory
    16GB DDR5
    Graphics Card(s)
    GeForce RTX 4060 Mobile
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    512GB SSD internal
    37TB external
    PSU
    Li-ion
    Cooling
    2× Arc Flow Fans, 4× exhaust vents, 5× heatpipes
    Keyboard
    Logitech K800
    Mouse
    Logitech G402
    Internet Speed
    20Mbit/s up, 250Mbit/s down
    Browser
    FF
  • Operating System
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Medion S15450
    CPU
    i5 1135G7
    Memory
    16GB DDR4
    Graphics card(s)
    Intel Iris Xe
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    2TB SSD internal
    37TB external
    PSU
    Li-ion
    Mouse
    Logitech G402
    Keyboard
    Logitech K800
    Internet Speed
    20Mbit/s up, 250Mbit/s down
    Browser
    FF
Settings > System > About

does it quick and easy!
 

My Computer

System One

  • OS
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Dell XPS 16 9640
    CPU
    Intel Core Ultra 9 185H
    Memory
    32GB LPDDR5x 7467 MT/s
    Graphics Card(s)
    NVIDIA GeForce RTX 4070 8GB GDDR6
    Monitor(s) Displays
    16.3 inch 4K+ OLED Infinity Edge Touch
    Screen Resolution
    3840 x 2400
    Hard Drives
    1 Terabyte M.2 PCIe NVMe SSD
    Cooling
    Vapor Chamber Cooling
    Internet Speed
    960 Mbps Netgear Mesh + 2 Satellites
    Browser
    Microsoft Edge (Chromium) + Bing
    Antivirus
    Microsoft Windows Security (Defender)
    Other Info
    Microsoft 365 subscription
    Microsoft OneDrive 1TB Cloud
    Microsoft Visual Studio
    Microsoft Visual Studio Code
    Microsoft PowerToys
    Macrium Reflect X subscription
    Dell Support Assist
    Dell Command | Update
    LastPass Password Manager
    Amazon Kindle for PC
    Interactive Brokers Trader Workstation
    Lightroom/Photoshop subscription
    BitLocker
    CoPilot

Latest Support Threads

Back
Top