hello,
http://www.itstuff.ca/2009/05/information-...-by-imagex.htmlinstall.wim in windows 7 installation DVD contains these images:
1] Windows 7 STARTER
[2] Windows 7 HOMEBASIC
[3] Windows 7 HOMEPREMIUM
[4] Windows 7 PROFESSIONAL
[5] Windows 7 ULTIMATE
as explained in this link:
http://www.itstuff.ca/2009/05/information-...-by-imagex.htmlusing imagex
IMAGEX /INFO D:\Sources\install.wim
it is the product key that decides which image to extract from the
install.wim file
=======================================================
_info_about-install-wim.BAT
======================================================================
CODE
@echo off
IF {%1}=={} @Echo Please provide a path to the .WIM file. For ex. D:\Sources\install.wim &goto :EOF
SET WIMPATH=%1
SET Images-Num=
SET LoopNum=
SET I=
FOR /F "TOKENS=3 Delims=: " %%a in ('imagex /INFO %1 ^| Find /i "Image Count"') do set Images-Num=%%a
SET /a LoopNum=%Images-Num% + 1
@Echo Index Image Name
:LOOP1
SET /a I=%I% + 1
IF "%I%"=="%LoopNum%" goto END
FOR /F "TOKENS=3 Delims=>,<" %%a in ('Imagex /INFO %1 %I% ^| find /i "<name>"') do @Echo [%I%] %%a
goto LOOP1
:END
</name>
============================================================================
usage on the command line:
_info_about-install-wim c:\pe\install.wim
C:\temp4>_info_about-wim c:\pe\install.wim
Index Image Name
[1] Windows 7 HOMEBASIC
[2] Windows 7 HOMEPREMIUM
[3] Windows 7 BUSINESS
[4] Windows 7 ULTIMATE
============================================
regards Ben