This article covers how to confirm the Edition & Build of a Windows 10 ISO using dism (Deployment Image Servicing and Management ).
Step 1
The ISO in question needs to be mounted (in this example its the E: drive).
dism can be ran against an install.wim or install.esd file.
Determine which one it is by browsing to the E:\sources folder (replace E: with the drive letter assigned to the mounted ISO).
Step 2
From an elevated command prompt, run the relevant command (replace E: with the drive letter assigned to the mounted ISO).
For install.wim:
dism /Get-WimInfo /WimFile:E:\sources\install.wim /index:1
For install.esd:
dism /Get-WimInfo /WimFile:E:\sources\install.esd /index:1
In the following example, the file is install.wim.
dism /Get-WimInfo /WimFile:E:\sources\install.wim /index:1
Output below, here its Windows 10 Education Edition, version 10.0.17134.
dism /Get-WimInfo /WimFile:E:\sources\install.wim /index:1 Deployment Image Servicing and Management tool Version: 10.0.17134.1 Details for image : E:\sources\install.wim Index : 1 Name : Windows 10 Education Description : Windows 10 Education Size : 15,999,725,775 bytes WIM Bootable : No Architecture : x64 Hal : <undefined> Version : 10.0.17134 ServicePack Build : 1 ServicePack Level : 112 Edition : Education Installation : Client ProductType : WinNT ProductSuite : Terminal Server System Root : WINDOWS Directories : 22015 Files : 109237 Created : 19/06/2018 - 20:37:27 Modified : 19/06/2018 - 21:04:43 Languages : en-US (Default) The operation completed successfully.