Home All Groups Group Topic Archive Search About
Author
27 May 2005 9:16 PM
Andrea Casini
Hi,

i want to deploy windows firewall configuration to winxpsp2 clients with
gpo. Not all clients have sp2 so i was thinking to use WMI filter but i don't
know what code to use. Anyone can help?

Author
28 May 2005 6:12 PM
Torgeir Bakken (MVP)
Andrea Casini wrote:

> i want to deploy windows firewall configuration to winxpsp2
> clients with gpo. Not all clients have sp2 so i was thinking to
> use WMI filter but i don't know what code to use. Anyone can help?
Hi,

Non-WinXP SP2 computers will just disregard the GPO settings for the
WinXP SP2 firewall, so there is no need for any filtering really.



--
torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of
the 1328 page Scripting Guide:
http://www.microsoft.com/technet/scriptcenter/default.mspx
Are all your drivers up to date? click for free checkup

Author
28 May 2005 7:47 PM
Andrea Casini
"Torgeir Bakken (MVP)" wrote:

> Non-WinXP SP2 computers will just disregard the GPO settings for the
> WinXP SP2 firewall, so there is no need for any filtering really.

Ok, good to know. For the sake of curiosity, anyway, is there a way to
filter that?
Author
29 May 2005 10:52 AM
Martin P. Hellwig
Andrea Casini wrote:
>
> "Torgeir Bakken (MVP)" wrote:
>
>
>>Non-WinXP SP2 computers will just disregard the GPO settings for the
>>WinXP SP2 firewall, so there is no need for any filtering really.
>
>
> Ok, good to know. For the sake of curiosity, anyway, is there a way to
> filter that?

Yes there is, the query:
Select Version,ServicePackMajorVersion from Win32_OperatingSystem where
Version >= '5.1.2600' and ServicePackMajorVersion >= '2'

Should do the trick.

--
mph
Author
29 May 2005 11:07 AM
Andrea Casini
"Martin P. Hellwig" wrote:

> Yes there is, the query:
> Select Version,ServicePackMajorVersion from Win32_OperatingSystem where
> Version >= '5.1.2600' and ServicePackMajorVersion >= '2'
>
> Should do the trick.

Thank you!

Bookmark and Share