up vote 2 down vote favorite
share [g+] share [fb]

One Time Deployment - I have Windows 7 install media on a USB key. How can I tell if it contains install images for 32 bit?

imagex /info doesn't tell me anything about the architecture, other than this line: <ARCH>9</ARCH>. I can't find a file explaining which it is, nor can I tell what ARCH 9 is :)

Thanks for your help.

Also asked here: http://serverfault.com/questions/119928/one-time-deployment-i-have-windows-7-install-media-on-a-usb-key-how-can-i-tell

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Open the autorun.inf file if it is 32bit it will read as follows

[Autorun]

open=setup.exe

icon=setup.exe,0

If it is 64bit

[AutoRun.Amd64]

open=setup.exe

icon=setup.exe,0

[AutoRun]

open=sources\sperr32.exe x64

icon=sources\sperr32.exe,0

link|improve this answer
Thanks, but isn't also possible to have 32 bit images to deploy in the latter case? – user30404 Mar 7 '10 at 2:11
feedback

Your Answer

 
or
required, but never shown