Installation and Upgrade Find Build and Version of Windows 11 Installation ISO or USB


ISO_banner.png

This tutorial will show you how to see full details such as language, edition, build, version, architecture, and more for a Windows 11 installation ISO or USB.

A Windows 11 ISO file is a disc image file that can be used to create a Windows 11 installation USB or DVD to install Windows 11 with.


Here's How:

1 Connect the Windows 11 installation USB, or mount the Windows 11 ISO file, and make note of its drive letter (ex: "F:"). (see screenshot below)

USB_or_Mounted_ISO.png


2 Open the connected USB flash drive or mounted ISO in File Explorer (Win+E), and open the sources folder. Make note if there is an install.wim, install.esd, or install.swm file. (see screenshot below)

WIM_or_ESD.png

3 You can now close File Explorer.

4 Open an elevated Windows Terminal, and select Windows PowerShell or Command Prompt.

5 Depending on if you have a install.wim, install.esd, or install.swm file from step 2 above, type the appropriate command below into the elevated terminal, and press Enter. (see screenshots below)

This command will show you the index number for each edition of Windows 11 included in the ISO file or USB.


(install.wim)​
dism /get-wiminfo /wimfile:<Drive Letter>:\sources\install.wim

OR​

(install.esd)​
dism /get-wiminfo /wimfile:<Drive Letter>:\sources\install.esd

OR​

(install.swm)​
dism /get-wiminfo /wimfile:<Drive Letter>:\sources\install.swm

Substitute <Drive Letter> in the command above with the actual drive letter (ex: "F") for the USB or mounted ISO from step 1.

For example:
dism /get-wiminfo /wimfile:F:\sources\install.wim

dism /get-wiminfo /wimfile:F:\sources\install.esd

dism /get-wiminfo /wimfile:F:\sources\install.swm



USB_ISO_index_details.png
arm64_USB_ISO_index_details.png

6 Depending on if you have a install.esd or install.wim file from step 2 above, type the appropriate command below into the elevated terminal, and press Enter. (see screenshots below step 7)

(install.wim)​
dism /get-wiminfo /wimfile:<Drive Letter>:\sources\install.wim /index:<Index Number>

OR​

(install.esd)​
dism /get-wiminfo /wimfile:<Drive Letter>:\sources\install.esd /index:<Index Number>

OR​

(install.swm)​
dism /get-wiminfo /wimfile:<Drive Letter>:\sources\install.swm /index:<Index Number>

Substitute <Drive Letter> in the command above with the actual drive letter (ex: "F") for the USB or mounted ISO from step 1.

Substitute <Index Number> in the command above with the actual index number (ex: "1") for the edition (ex: "Pro") you want details about from step 5.

For example:
dism /get-wiminfo /wimfile:F:\sources\install.wim /index:1

dism /get-wiminfo /wimfile:F:\sources\install.esd /index:1

dism /get-wiminfo /wimfile:F:\sources\install.swm /index:1



7 You will now see all details of the selected index number (edition) for this Windows 11 ISO or USB. (see screenshots below)

Edition: This will be for the Windows 11 Home, Pro, Education, or Enterprise edition. The Pro ISO or USB can be used to install either the Home or Pro edition, and the digital license or product key determines if Pro of Home is installed during Windows Setup.

Architecture: This will be for a x64 (64-bit) or arm64 system type.

Language: This will be the default display language (ex: "en-us") used to install Windows 11 with.

Version: The part after 10.0 will be the first part of the Windows 11 build number. For example: build 22000.100

ServicePack Build
This is the second part of the Windows 11 build number. For example: build 22000.100


USB_ISO_details.png
arm64_USB_ISO_details.png



That's it,
Shawn Brink

 
Last edited:
DISM /Get-WimInfo may report an incorrect build version, because of how DISM saves the build info when the WIM is created.

Another set of tools like wimlib and offlinereg.exe is required to detect if the offline image has a later CU or Enablement Package applied. This includes images created by MediaCreationTool or UUP dump scripts.

Win11_24H2_English_x64.iso (26100.1742)
Code:
dism /get-wiminfo /wimfile:F:\Win11_24H2_English_x64\sources\install.wim /index:1

Deployment Image Servicing and Management tool
Version: 6.1.7601.24499

Details for image : F:\Win11_24H2_English_x64\sources\install.wim

Index : 1
Name : Windows 11 Pro
Description : Windows 11 Pro
Size : 19,184,152,056 bytes
Architecture : x64
Hal : <undefined>
Version : 10.0.26100  <--
ServicePack Build : 1591  <--
ServicePack Level : 0
Edition : Professional
Installation : Client
ProductType : WinNT
ProductSuite : Terminal Server
System Root : WINDOWS
Directories : 25477
Files : 113466
Created : 9/5/2024 - 8:21:43 PM
Modified : 10/16/2025 - 8:16:34 AM
Languages :
        en-US (Default)

The operation completed successfully.

CorrectVersion.bat F:\Win11_24H2_English_x64\sources\install.wim

Index Name           Arch Edition      Current UBR
----- ----           ---- -------      -----------
   1  Windows 11 Pro x64  Professional 26100.1742

Win11_25H2_English_x64.iso (26200.6584)
Code:
dism /get-wiminfo /wimfile:F:\Win11_25H2_English_x64\sources\install.swm /index:1

Deployment Image Servicing and Management tool
Version: 6.1.7601.24499

Details for image : F:\Win11_25H2_English_x64\sources\install.swm

Index : 1
Name : Windows 11 Pro
Description : Windows 11 Pro
Size : 23,139,633,947 bytes
Architecture : x64
Hal : <undefined>
Version : 10.0.26100  <---
ServicePack Build : 5074  <--
ServicePack Level : 0
Edition : Professional
Installation : Client
ProductType : WinNT
ProductSuite : Terminal Server
System Root : WINDOWS
Directories : 30550
Files : 137346
Created : 9/15/2025 - 12:00:53 PM
Modified : 11/26/2025 - 7:21:19 AM
Languages :
        en-US (Default)

The operation completed successfully.

CorrectVersion.bat F:\Win11_25H2_English_x64\sources\install.swm

Index Name           Arch Edition      Current UBR
----- ----           ---- -------      -----------
   1  Windows 11 Pro x64  Professional 26200.6584

Usage:
CorrectVersion.bat D:\sources\install.wim​
CorrectVersion.bat E:\W11_21H2_ISO\sources\install.esd​
CorrectVersion.bat F:\sources\install.swm​
 

Attachments

My Computer

System One

  • OS
    Windows 7

Latest Support Threads

Back
Top Bottom