Joining Multiple WQL/WMI Statements
- From: "Jamié" <jaimehawke@xxxxxxxxxxx>
- Date: 11 Oct 2005 12:17:42 -0700
Hi,
I'm trying to ensure some software is installed only on machines that
meet the minimum system requirements specified by the manufacturer (RAM
and hard disk free space).
The software I want to install specifies:
[ ] Windows XP (Professional or Home Edition)
[ ] Microsoft Internet Explorer 5.5 or higher
[ ] 256MB of RAM
[ ] Up to 200MB of available hard disk space
I know all my machines have Windows XP Pro and IE > 5.5 - so I can
ignore those.
I've come up with these WQL statements:
SELECT * FROM Win32_ComputerSystem WHERE TotalPhysicalMemory >
268435455
SELECT * FROM Win32_LogicalDisk WHERE DeviceID = "C:" and FreeSpace >
209715199
>>From here I'm stuck! I can't work out how to join them both together to
form one statement that evaluates as true/false so that I can put it in
to the Group Policy filter dialog.
Would someone please help.
Jaimé
.
- Follow-Ups:
- Re: Joining Multiple WQL/WMI Statements
- From: Jamié
- Re: Joining Multiple WQL/WMI Statements
- Prev by Date: Re: Last logon User [WILDPACKET]
- Next by Date: Bypass proxy?
- Previous by thread: Disabling determined tabs on system properties
- Next by thread: Re: Joining Multiple WQL/WMI Statements
- Index(es):
Relevant Pages
|