Location: List Archives

List Archives

This forum is an archive of all posts to our mailing list over the past few years.  The forum is set read only therefore to contribute you will need to join our list community.  See more info about this here.

 

When subscribed to the list you should use your standard email client to send your posts to ActiveDir@mail.activedir.org.

List Archives

Subject: [ActiveDir] WMI Filtering: CPU Architecture and OS
Prev Next
You are not authorized to post a reply.

AuthorMessages
gabriel/tfiUser is Offline

Posts:376

06/11/2009 10:49 AM  

I need to create the following 4 WMI filters for GPOs:
- OS is Win2000 WinXP 32it, Win2003 32bit
- OS is WinXP 64bit or Win2003 64bit
- OS is WinVista 32bit or Win2008 32bit
- OS is WinVista 64bit or Win2008 64bit

Thanks for your help - Thanks, Gabriele.

robertsingersUser is Offline

Posts:498

06/11/2009 10:55 AM  
This should be a start for you.

32 bit OS is "select * from Win32_Processor where AddressWidth = 32"

64bit OS is "select * from Win32_Processor where AddressWidth = 32"

Windows XP SP2 is "Select * from WIN32_OperatingSystem where
ServicePackMajorVersion>=2 and Version='5.1.2600'"

Vista is "Select * from WIN32_OperatingSystem where Version>6.0 and
ProductType=1"


-----Original Message-----
From: activedir-owner@mail.activedir.org
[mailto:activedir-owner@mail.activedir.org] On Behalf Of gabro@gabro.net
Sent: Thursday, 11 June 2009 9:47 p.m.
To: activedir@mail.activedir.org
Subject: [ActiveDir] WMI Filtering: CPU Architecture and OS


I need to create the following 4 WMI filters for GPOs:
- OS is Win2000 WinXP 32it, Win2003 32bit
- OS is WinXP 64bit or Win2003 64bit
- OS is WinVista 32bit or Win2008 32bit
- OS is WinVista 64bit or Win2008 64bit

Thanks for your help - Thanks, Gabriele.

########################################################################
#####################
This e-mail message has been scanned for Viruses and cleared by NetIQ
MailMarshal.
########################################################################
######################
############################################################
PLEASE NOTE:

The information contained in this email message and any
attached files may be confidential and subject to privilege.
Any opinions expressed in this message are not necessarily
those of the Department of Building and Housing. All technical
opinions are offered on a ?no-liability? basis. This message
and any files transmitted with it are confidential and solely
for the use of the intended recipient. If you are not the
intended recipient, you are notified that any use, disclosure
or copying of this email is unauthorised. If you have received
this email in error, please notify us immediately by reply email
and delete the original and any attachment(s). Thank you.
############################################################
gabriel/tfiUser is Offline

Posts:376

06/11/2009 1:58 PM  
Thank Robert, but I already had those filters, I was just wondering how
to filter TOGETHER OS and CPU Architecture.

Thanks - Gabriele.

> -------- Original Message --------
> Subject: RE: [ActiveDir] WMI Filtering: CPU Architecture and OS
> From: "Robert Singers" <robert.singers@dbh.govt.nz>
> Date: Thu, June 11, 2009 11:57 am
> To: <activedir@mail.activedir.org>
> Pffftttt
> 64bit OS is "select * from Win32_Processor where AddressWidth = 64"
> -----Original Message-----
> From: activedir-owner@mail.activedir.org
> [mailto:activedir-owner@mail.activedir.org] On Behalf Of Robert Singers
> Sent: Thursday, 11 June 2009 9:54 p.m.
> To: activedir@mail.activedir.org
> Subject: RE: [ActiveDir] WMI Filtering: CPU Architecture and OS
> This should be a start for you.
> 32 bit OS is "select * from Win32_Processor where AddressWidth = 32"
> 64bit OS is "select * from Win32_Processor where AddressWidth = 32"
> Windows XP SP2 is "Select * from WIN32_OperatingSystem where
> ServicePackMajorVersion>=2 and Version='5.1.2600'"
> Vista is "Select * from WIN32_OperatingSystem where Version>6.0 and
> ProductType=1"
> -----Original Message-----
> From: activedir-owner@mail.activedir.org
> [mailto:activedir-owner@mail.activedir.org] On Behalf Of gabro@gabro.net
> Sent: Thursday, 11 June 2009 9:47 p.m.
> To: activedir@mail.activedir.org
> Subject: [ActiveDir] WMI Filtering: CPU Architecture and OS
> I need to create the following 4 WMI filters for GPOs:
> - OS is Win2000 WinXP 32it, Win2003 32bit
> - OS is WinXP 64bit or Win2003 64bit
> - OS is WinVista 32bit or Win2008 32bit
> - OS is WinVista 64bit or Win2008 64bit
> Thanks for your help - Thanks, Gabriele.
> ########################################################################
> #####################
> This e-mail message has been scanned for Viruses and cleared by NetIQ
> MailMarshal.
> ########################################################################
> ######################
> ############################################################
> PLEASE NOTE:
> The information contained in this email message and any attached files
> may be confidential and subject to privilege.
> Any opinions expressed in this message are not necessarily those of the
> Department of Building and Housing. All technical opinions are offered
> on a 'no-liability' basis. This message and any files transmitted with
> it are confidential and solely for the use of the intended recipient. If
> you are not the intended recipient, you are notified that any use,
> disclosure or copying of this email is unauthorised. If you have
> received this email in error, please notify us immediately by reply
> email and delete the original and any attachment(s). Thank you.
> ############################################################

SaucyWrongUser is Offline

Posts:54

06/11/2009 5:57 PM  
When you create the WMI filter, add both WMI queries for OS level and CPU
architecture.The WMI filter will pass only computers that meet the criteria
for both queries.

Thanks,
Matt Quinn

On Thu, Jun 11, 2009 at 8:57 AM, <gabro@gabro.net> wrote:

> Thank Robert, but I already had those filters, I was just wondering how
> to filter TOGETHER OS and CPU Architecture.
>
> Thanks - Gabriele.
>
> > -------- Original Message --------
> > Subject: RE: [ActiveDir] WMI Filtering: CPU Architecture and OS
> > From: "Robert Singers" <robert.singers@dbh.govt.nz>
> > Date: Thu, June 11, 2009 11:57 am
> > To: <activedir@mail.activedir.org>
> > Pffftttt
> > 64bit OS is "select * from Win32_Processor where AddressWidth = 64"
> > -----Original Message-----
> > From: activedir-owner@mail.activedir.org
> > [mailto:activedir-owner@mail.activedir.org] On Behalf Of Robert Singers
> > Sent: Thursday, 11 June 2009 9:54 p.m.
> > To: activedir@mail.activedir.org
> > Subject: RE: [ActiveDir] WMI Filtering: CPU Architecture and OS
> > This should be a start for you.
> > 32 bit OS is "select * from Win32_Processor where AddressWidth = 32"
> > 64bit OS is "select * from Win32_Processor where AddressWidth = 32"
> > Windows XP SP2 is "Select * from WIN32_OperatingSystem where
> > ServicePackMajorVersion>=2 and Version='5.1.2600'"
> > Vista is "Select * from WIN32_OperatingSystem where Version>6.0 and
> > ProductType=1"
> > -----Original Message-----
> > From: activedir-owner@mail.activedir.org
> > [mailto:activedir-owner@mail.activedir.org] On Behalf Of gabro@gabro.net
> > Sent: Thursday, 11 June 2009 9:47 p.m.
> > To: activedir@mail.activedir.org
> > Subject: [ActiveDir] WMI Filtering: CPU Architecture and OS
> > I need to create the following 4 WMI filters for GPOs:
> > - OS is Win2000 WinXP 32it, Win2003 32bit
> > - OS is WinXP 64bit or Win2003 64bit
> > - OS is WinVista 32bit or Win2008 32bit
> > - OS is WinVista 64bit or Win2008 64bit
> > Thanks for your help - Thanks, Gabriele.
> > ########################################################################
> > #####################
> > This e-mail message has been scanned for Viruses and cleared by NetIQ
> > MailMarshal.
> > ########################################################################
> > ######################
> > ############################################################
> > PLEASE NOTE:
> > The information contained in this email message and any attached files
> > may be confidential and subject to privilege.
> > Any opinions expressed in this message are not necessarily those of the
> > Department of Building and Housing. All technical opinions are offered
> > on a 'no-liability' basis. This message and any files transmitted with
> > it are confidential and solely for the use of the intended recipient. If
> > you are not the intended recipient, you are notified that any use,
> > disclosure or copying of this email is unauthorised. If you have
> > received this email in error, please notify us immediately by reply
> > email and delete the original and any attachment(s). Thank you.
> > ############################################################
>
>

kamleshapUser is Offline

Posts:51

06/26/2009 10:00 PM  
AFAIK.. Win 2000 will always pass WMI filters and policy will apply to them.


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Argue for your limitations, and sure enough, they're yours.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


On Thu, Jun 11, 2009 at 12:55 PM, Matt Quinn <saucy.wrong@gmail.com> wrote:

> When you create the WMI filter, add both WMI queries for OS level and CPU
> architecture.The WMI filter will pass only computers that meet the
> criteria for both queries.
>
> Thanks,
> Matt Quinn
>
>
> On Thu, Jun 11, 2009 at 8:57 AM, <gabro@gabro.net> wrote:
>
>> Thank Robert, but I already had those filters, I was just wondering how
>> to filter TOGETHER OS and CPU Architecture.
>>
>> Thanks - Gabriele.
>>
>> > -------- Original Message --------
>> > Subject: RE: [ActiveDir] WMI Filtering: CPU Architecture and OS
>> > From: "Robert Singers" <robert.singers@dbh.govt.nz>
>> > Date: Thu, June 11, 2009 11:57 am
>> > To: <activedir@mail.activedir.org>
>> > Pffftttt
>> > 64bit OS is "select * from Win32_Processor where AddressWidth = 64"
>> > -----Original Message-----
>> > From: activedir-owner@mail.activedir.org
>> > [mailto:activedir-owner@mail.activedir.org] On Behalf Of Robert Singers
>> > Sent: Thursday, 11 June 2009 9:54 p.m.
>> > To: activedir@mail.activedir.org
>> > Subject: RE: [ActiveDir] WMI Filtering: CPU Architecture and OS
>> > This should be a start for you.
>> > 32 bit OS is "select * from Win32_Processor where AddressWidth = 32"
>> > 64bit OS is "select * from Win32_Processor where AddressWidth = 32"
>> > Windows XP SP2 is "Select * from WIN32_OperatingSystem where
>> > ServicePackMajorVersion>=2 and Version='5.1.2600'"
>> > Vista is "Select * from WIN32_OperatingSystem where Version>6.0 and
>> > ProductType=1"
>> > -----Original Message-----
>> > From: activedir-owner@mail.activedir.org
>> > [mailto:activedir-owner@mail.activedir.org] On Behalf Of
>> gabro@gabro.net
>> > Sent: Thursday, 11 June 2009 9:47 p.m.
>> > To: activedir@mail.activedir.org
>> > Subject: [ActiveDir] WMI Filtering: CPU Architecture and OS
>> > I need to create the following 4 WMI filters for GPOs:
>> > - OS is Win2000 WinXP 32it, Win2003 32bit
>> > - OS is WinXP 64bit or Win2003 64bit
>> > - OS is WinVista 32bit or Win2008 32bit
>> > - OS is WinVista 64bit or Win2008 64bit
>> > Thanks for your help - Thanks, Gabriele.
>> > ########################################################################
>> > #####################
>> > This e-mail message has been scanned for Viruses and cleared by NetIQ
>> > MailMarshal.
>> > ########################################################################
>> > ######################
>> > ############################################################
>> > PLEASE NOTE:
>> > The information contained in this email message and any attached files
>> > may be confidential and subject to privilege.
>> > Any opinions expressed in this message are not necessarily those of the
>> > Department of Building and Housing. All technical opinions are offered
>> > on a 'no-liability' basis. This message and any files transmitted with
>> > it are confidential and solely for the use of the intended recipient. If
>> > you are not the intended recipient, you are notified that any use,
>> > disclosure or copying of this email is unauthorised. If you have
>> > received this email in error, please notify us immediately by reply
>> > email and delete the original and any attachment(s). Thank you.
>> > ############################################################
>>
>>
>

You are not authorized to post a reply.
Forums >ActiveDir Mail List Archive >List Archives > [ActiveDir] WMI Filtering: CPU Architecture and OS



ActiveForums 3.7
Friends

Friends

VisualClickButoton
Members

Members

MembershipMembership:
Latest New UserLatest:janders14
New TodayNew Today:0
New YesterdayNew Yesterday:0
User CountOverall:4825

People OnlinePeople Online:
VisitorsVisitors:70
MembersMembers:0
TotalTotal:70

Online NowOnline Now:

Ads

Copyright 2009 ActiveDir.org
Terms Of Use