Creating One task sequence to Deploy Windows 7 x86 and x64
I am trying to create one task sequence that will replace separate x86 and x64 ones. I have added two "Apply Operating System Image" tasks. The first one points at my x64 wim, and has a condition on it based on the following wmi query: select * from Win32_Processor where DeviceID="CPU0" and AddressWidth="64" The second one is my x86 wim, and has this wmi query: select * from Win32_Processor where DeviceID="CPU0" and AddressWidth="32" However both my x86 and x64 machines install the x86 wim. Any suggestions on how to fix this? Thanks
July 5th, 2011 11:58am

I was able to fix this by changing the WMI query to the following for x64: SELECT * FROM Win32_Processor WHERE Architecture = 9 For x86 Query I used: SELECT * FROM Win32_Processor WHERE Architecture = 0
Free Windows Admin Tool Kit Click here and download it now
July 5th, 2011 2:06pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics