Windows 10 WMI filter question for Windows 10 Enterprise

  • Thread starter Thread starter fireball1800
  • Start date Start date
F

fireball1800

Guest
Question on the WMI query that for the WMI filter for 64bit windows.. should that not be Win64_OperatingSystem?

Select * from WIN32_OperatingSystem where Version like ‘10.%’ and ProductType=1

or

Select * from WIN64_OperatingSystem where Version like ‘10.%’ and ProductType=1

curious on how to find out what the wmi on the workstation should show.. for correct setting to use in the wmi filter?

Seems logical that Win32 would apply to 32bit OS and Win64 would be for 64 bit..

I need a filter that will distinguish between Windows 10 32bit and Windows 10 64bit.

for example, I use bginfo.exe to apply desktop information to the user and I noticed that there are two versions..

bginfo.exe for 32bit and bginfo64.exe for 64bit.. need to distinguish between the two flavors of workstations as to which bginfo to run..

any insight into this would help..

thanks


Could I use

For 64bit WMI filter

Select * from Win32_OperatingSystem where Version like "10.%" and OSArchitecture="64%" and ProductType="1"

For 32bit WMI filter

Select * from Win32_OperatingSystem where Version like "10.%" and OSArchitecture="32%" and ProductType="1"

??

More...
 
Back
Top