How do I get the build number from an .ISO?

Discussion in 'Windows 10' started by El_Heffe, Mar 28, 2019.

  1. El_Heffe

    El_Heffe MDL Member

    Jul 16, 2007
    200
    87
    10
    If I have an .ISO, I can use dism:

    dism /Get-WimInfo /WimFile:install.wim

    But that only tells me that I have Windows 10 Pro

    How do I get the build number? For example, if I'm looking for 17763.379 how do I find that info from an .ISO?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,006
    93,802
    450
    Specify the index and it should tell all info.

    Code:
    C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools>dism /English /Get-WimInfo /WimFile:k:\Win_10_AiO\Work\Consumer_ISO\x86\sources\install.wim /index:1
    
    Deployment Image Servicing and Management tool
    Version: 10.0.17763.1
    
    Details for image : k:\Win_10_AiO\Work\Consumer_ISO\x86\sources\install.wim
    
    Index : 1
    Name : Windows 10 Home
    Description : Windows 10 Home
    Size : 9,474,900,307 bytes
    WIM Bootable : No
    Architecture : x86
    Hal : <undefined>
    Version : 10.0.17763
    ServicePack Build : 316
    ServicePack Level : 0
    Edition : Core
    Installation : Client
    ProductType : WinNT
    ProductSuite : Terminal Server
    System Root : WINDOWS
    Directories : 15120
    Files : 69793
    Created : 2/13/2019 - 5:59:06 AM
    Modified : 2/13/2019 - 6:21:49 AM
    Languages :
            en-US (Default)
    
    The operation completed successfully.
    
    C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools>
    Code:
    
    C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools>dism /English /Get-WimInfo /WimFile:k:\Win_10_AiO\Work\Consumer_ISO\x86\sources\install.wim /index:3
    
    Deployment Image Servicing and Management tool
    Version: 10.0.17763.1
    
    Details for image : k:\Win_10_AiO\Work\Consumer_ISO\x86\sources\install.wim
    
    Index : 3
    Name : Windows 10 Home Single Language
    Description : Windows 10 Home Single Language
    Size : 9,476,154,169 bytes
    WIM Bootable : No
    Architecture : x86
    Hal : <undefined>
    Version : 10.0.17763
    ServicePack Build : 316
    ServicePack Level : 0
    Edition : CoreSingleLanguage
    Installation : Client
    ProductType : WinNT
    ProductSuite : Terminal Server
    System Root : WINDOWS
    Directories : 15120
    Files : 69794
    Created : 2/13/2019 - 6:00:33 AM
    Modified : 2/13/2019 - 6:22:13 AM
    Languages :
            en-US (Default)
    
    The operation completed successfully.
    
    C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools>
    
     
  3. El_Heffe

    El_Heffe MDL Member

    Jul 16, 2007
    200
    87
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Soapm

    Soapm MDL Novice

    Mar 23, 2013
    29
    1
    0
    How do you specify an index? Can you give a sample command?
     
  5. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,377
    340
    @Enthousiast showed in his post:
    Code:
    dism /English /Get-WimInfo /WimFile:k:\Win_10_AiO\Work\Consumer_ISO\x86\sources\install.wim /index:1
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...