How can you tell the Build No of a Windows ISO


Joined
Mar 19, 2015
Messages
24
Reaction score
0
I like to Test the Latest Build Numbers of w10 ISO's.
And have Labeled most of them to reflect the build number.
However I have a few that I have named windows 10 iso.
So my question is , How can you find the build number of any one of those iso's without installing them.
I imagine there would be a File in the iso that would provide that info.
If so can someone please tell me what that file name is and where about's in the iso is it located.
 
Ad

Advertisements

Trouble

Noob Whisperer
Moderator
Joined
Nov 19, 2013
Messages
13,417
Reaction score
2,320
Double click the ISO to mount it and then use a admin command prompt to get the information you are looking for.

From and elevated command prompt (Command Prompt (Admin)) type
dism /Get-WimInfo /WimFile:H:\sources\install.wim /index:1 (Where H:\ is the mounted ISO drive letter and the sources folder contains an "install.wim" file)
OR
dism /Get-WimInfo /WimFile:H:\sources\install.esd /index:1 (Where H:\ is the mounted ISO drive letter and the sources folder contains an "Install.esd" file)

the results should look something like this
C:\Windows\system32>dism /Get-WimInfo /WimFile:H:\sources\install.wim /index:1

Deployment Image Servicing and Management tool
Version: 10.0.14393.0

Details for image : H:\sources\install.wim

Index : 1
Name : Windows 10 Pro
Description : Windows 10 Pro
Size : 14,747,431,455 bytes
WIM Bootable : No
Architecture : x64
Hal : <undefined>
Version : 10.0.14393
ServicePack Build : 0
ServicePack Level : 0
Edition : Professional

Installation : Client
ProductType : WinNT
ProductSuite : Terminal Server
System Root : WINDOWS
Directories : 19070
Files : 103878
Created : 7/16/2016 - 10:05:47 AM
Modified : 7/16/2016 - 10:06:29 AM
Languages :
en-US (Default)

The operation completed successfully.
OR
C:\Windows\system32>dism /Get-WimInfo /WimFile:H:\sources\install.esd /index:1

Deployment Image Servicing and Management tool
Version: 10.0.14393.0

Details for image : H:\sources\install.esd

Index : 1
Name : Windows 10 Pro Insider Preview
Description : Windows 10 Pro Insider Preview
Size : 14,771,118,475 bytes
WIM Bootable : No
Architecture : x64
Hal : <undefined>
Version : 10.0.14901
ServicePack Build : 1000
ServicePack Level : 0
Edition : Professional

Installation : Client
ProductType : WinNT
ProductSuite : Terminal Server
System Root : WINDOWS
Directories : 19066
Files : 104117
Created : 8/6/2016 - 9:37:13 AM
Modified : 8/11/2016 - 7:06:52 PM
Languages :
en-US (Default)

The operation completed successfully.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top