Windows: determine the win ver on media


Run: Command Prompt (Admin) or PowerShell (Admin)

DISM /get-wiminfo /wimfile:"F:\sources\install.wim"
DISM /get-wiminfo /wimfile:"F:\x64\sources\install.esd"

If you want more detailed information, such as the specific build number and architecture (32-bit or 64-bit), you can add the /index:# parameter to the command, replacing # with the index number of the entry you want more information about.

DISM /get-wiminfo /wimfile:"F:\x64\sources\install.esd" /index:7

or in a powershell:

Get-WindowsImage -ImagePath g:\sources\install.wim


return to gimbo wiki home page