WMI Script

  • Thread starter Thread starter GeorgeKA
  • Start date Start date
G

GeorgeKA

Help,

I need to push a group policy out to boxes which only have pentium 4's and
no others. How do I create a wmi filter with server 03's group policy to
accomplish this?

Thanks.
George
 
select * from Win32_Processor where Name like "%Pentium 4%"

The LIKE clause works only on XP and above though. You have to find the
exact string to run the query on Windows 2000.

Senthil
 
Back
Top