RE: WMI filter help

2011-12-08 Thread Jeff Brown
Not what I wanted, but you are right, that works. Thanks heaps and gobs. ;) NEXT. From: Kennedy, Jim [mailto:kennedy...@elyriaschools.org] Sent: Thursday, December 08, 2011 2:28 PM To: NT System Admin Issues Subject: RE: WMI filter help I am not going to be able to help you skin it the way

RE: WMI filter help

2011-12-08 Thread Damien Solodow
Umm... Look at the bottom line: AND (Destination Like '10.3..61.1' ) ) You have one too many periods between 3 and 61. DAMIEN SOLODOW Systems Engineer 317.447.6033 (office) 317.447.6014 (fax) HARRISON COLLEGE From: Jeff Brown [mailto:jbr...@webcoindustries.com] Sent: Thursday, December 08, 2011

RE: WMI filter help

2011-12-08 Thread Kennedy, Jim
I am not going to be able to help you skin it the way you want via IP. But maybe some alternatives that come to mind may get you where you are going. Use security filtering on the GPO and only give that specific machine rights to that GPO. So on the scope tab of GPM modify the Security filtering

RE: WMI filter help

2011-12-08 Thread Kennedy, Jim
I am not going to be able to help you skin it the way you want via IP. But maybe some alternatives that come to mind may get you where you are going. Use security filtering on the GPO and only give that specific machine rights to that GPO. So on the scope tab of GPM modify the Security filtering

Re: WMI filter help

2011-09-28 Thread Christopher Bodnar
This is a valid WMI filter that I use: select * from Win32_OperatingSystem where Version like "6.1%" and ProductType="3" I would think you could do something like this. select * from Win32_OperatingSystem where Version like "6.1%" OR Name Like "R2%" Chris Bodnar, MCSE, MCITP Technical Suppo

RE: WMI filter help (SOLVED SORTA)

2011-09-28 Thread Crawford, Scott
Heh. I couldn't remember where I saw it. From: Kennedy, Jim [mailto:kennedy...@elyriaschools.org] Sent: Wednesday, September 28, 2011 2:38 PM To: NT System Admin Issues Subject: RE: WMI filter help (SOLVED SORTA) That was only for the Active Directory list. :) From: Crawford,

RE: WMI filter help (SOLVED SORTA)

2011-09-28 Thread Kennedy, Jim
That was only for the Active Directory list. :) From: Crawford, Scott [mailto:crawfo...@evangel.edu] Sent: Wednesday, September 28, 2011 3:35 PM To: NT System Admin Issues Subject: RE: WMI filter help (SOLVED SORTA) What happened to queuing your messages in the outbox for a few minutes? :) Glad

RE: WMI filter help (SOLVED SORTA)

2011-09-28 Thread Crawford, Scott
ssues Subject: RE: WMI filter help (SOLVED SORTA) Hmmm, according to google a WMI queries cannot contain multiple classes. Bummer, but not a big deal I will just do two GPO's. From: Kennedy, Jim [mailto:kennedy...@elyriaschools.org]<mailto:[mailto:kennedy...@elyriaschools.org]>

RE: WMI filter help (SOLVED SORTA)

2011-09-28 Thread Kennedy, Jim
Hmmm, according to google a WMI queries cannot contain multiple classes. Bummer, but not a big deal I will just do two GPO's. From: Kennedy, Jim [mailto:kennedy...@elyriaschools.org] Sent: Wednesday, September 28, 2011 3:10 PM To: NT System Admin Issues Subject: WMI filter help I think what I hav

RE: WMI Filter Help

2009-02-11 Thread Joseph L. Casale
[mailto:chanks...@gmail.com] Sent: Wednesday, February 11, 2009 2:58 AM To: NT System Admin Issues Subject: Re: WMI Filter Help Joseph- The second filter most likely won't do what you're expecting. While the first filter will produce 1 or 0 matching rows, the second filter will produce N or N-

Re: WMI Filter Help

2009-02-11 Thread Anders Blomgren
Joseph- The second filter most likely won't do what you're expecting. While the first filter will produce 1 or 0 matching rows, the second filter will produce N or N-1 matching rows, depending on if Folder is found or not. N will be the total number of directories. This means that the second filte

RE: WMI Filter Help

2009-02-10 Thread Joseph L. Casale
en a full path still has to check every dir versus the first scenario where it just goes out and looks for it? Thanks! jlc From: Christopher Bodnar [mailto:christopher_bod...@glic.com] Sent: Tuesday, February 10, 2009 12:08 PM To: NT System Admin Issues Subject: RE: WMI Filter Help Correct, the f

RE: WMI Filter Help

2009-02-10 Thread Christopher Bodnar
...@glic.com Phone: 610-807-6459 Fax: 610-807-6003 _ From: Joseph L. Casale [mailto:jcas...@activenetwerx.com] Sent: Tuesday, February 10, 2009 1:12 PM To: NT System Admin Issues Subject: RE: WMI Filter Help Whoops, forgot I stopped looking for and started looking for Name so I could speed

RE: WMI Filter Help

2009-02-10 Thread Joseph L. Casale
Whoops, forgot I stopped looking for and started looking for Name so I could speed it up with a full path. Select * from Win32_Directory Where Name = 'C:\\Program Files\\Folder' works immediately, but Select * from Win32_Directory Where Name <> 'C:\\Program Files\\Folder' takes forever? Any rea