Quantcast
Channel: ConfigMgr, Tips and Tricks
Viewing all articles
Browse latest Browse all 60

WMI Filter for Windows 7 x86 or x64 OS

$
0
0
If you want to use WMI Query in SCCM TS to make difference between Windows 7 x86 and Windows 7 x64 then this WMI query should be used:

Win 7 32 bit machines:

select * from Win32_OperatingSystem WHERE Version like "6.1%" AND ProductType="1" AND NOT OSArchitecture = "64-bit"

Win 7 64Bit machines:

select * from Win32_OperatingSystem WHERE Version like "6.1%" AND ProductType="1" AND OSArchitecture = "64-bit"

Viewing all articles
Browse latest Browse all 60

Trending Articles