Windows 10 ISO Version

Discussion in 'Windows 10' started by umbala, Mar 18, 2019.

  1. umbala

    umbala MDL Novice

    Sep 26, 2009
    21
    2
    0
    Is there a way to find out the version/build number of a Windows 10 ISO file?

    When I download the Windows 10 ISO directly from Microsoft the name is just "Windows 10.iso" and I'm trying to find a way to name it properly. I know the ISO can be mounted and the version information extracted that way, but what if I don't have access to any of those tools? Is there a 3rd party tool for this or a hash list maybe?

    Thanks for any help.
     
  2. Windows_Addict

    Windows_Addict MDL Expert

    Jul 19, 2018
    1,251
    3,441
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. pisthai

    pisthai Imperfect Human

    Jul 29, 2009
    7,221
    2,272
    240
    Simply mount the ISO in any Windows computer, Right click on the Setup.exe file and chose Properties which would show you the actual Version of that Windows ISO.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. kaljukass

    kaljukass MDL Guru

    Nov 26, 2012
    3,396
    1,322
    120
    #4 kaljukass, Mar 18, 2019
    Last edited: Mar 18, 2019
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,375
    2,277
    60
    #5 freddie-o, Mar 18, 2019
    Last edited: Mar 18, 2019
    Mount the ISO
    Go to the "sources" folder of mounted ISO
    Open command prompt
    If what you have is "install.wim" Type:
    (Change the drive letter of your mounted ISOs and the index number)
    Code:
    dism /Get-WimInfo /WimFile:F:\sources\install.wim
    If what you have is "install.esd" Type:
    Code:
    dism /Get-WimInfo /WimFile:F:\sources\install.esd 
    Choose the Index number of the edition
    If "install.wim" Type:
    Code:
    dism /Get-WimInfo /WimFile:F:\sources\install.wim /index:1
    If "install.esd" Type:
    Code:
    dism /Get-WimInfo /WimFile:F:\sources\install.esd /index:1


     
  6. umbala

    umbala MDL Novice

    Sep 26, 2009
    21
    2
    0
    Thanks everyone for the replies!