cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
ISD1
Engaged Sweeper
I am trying to build a new report, that will query my scanned computers for the minimum system requirements for Windows 7, however I am having a difficult time figuring it out. I tried editing the Not the Windows VIsta minimum requirements, but what I am seeing in the SQL window makes no sense to me at all. Can anybody help me out?

I need to find all machines that have at least:

* 1 GHz processor (32- or 64-bit)
* 1 GB of RAM (32-bit); 2 GB of RAM (64-bit)
* 16 GB of available disk space (32-bit); 20 GB of available disk space (64-bit)
* DirectX 9 graphics device with WDDM 1.0 or higher driver

Thanks for your help.
6 REPLIES 6
sjohnson
Engaged Sweeper
Does anyone have a solution for this report? This would really help enterprises evaluate their Win7 readiness.
Hemoco
Lansweeper Alumni
Direct X version is not the problem, the problem is "WDDM 1.0 or higher driver"
rkotvis
Engaged Sweeper
The DirectX version number can be found in HKEY_LOCAL_MACHINE\Software\Microsoft\DirectX, in the string value called "Version":

String Value		DirectX Version Number

4.02.0095 1.0
4.03.00.1096 2.0
4.04.0068 3.0
4.04.0069 3.0
4.05.00.0155 5.0
4.05.01.1721 5.0
4.05.01.1998 5.0
4.06.02.0436 6.0
4.07.00.0700 7.0
4.07.00.0716 7.0a
4.08.00.0400 8.0
4.08.01.0881 8.1
4.08.01.0810 8.1
4.09.0000.0900 9.0
4.09.00.0900 9.0
4.09.0000.0901 9.0a
4.09.00.0901 9.0a
4.09.0000.0902 9.0b
4.09.00.0902 9.0b
4.09.00.0904 9.0c
4.09.0000.0904 9.0c
Roelof Kotvis Bouwvereniging "Woningbelang" LinkedIn Profile
crashcarr
Engaged Sweeper
Do you have any tips on determining the DirectX 9 compatibility?
Hemoco
Lansweeper Alumni
crashcarr wrote:
Do you have any tips on determining the DirectX 9 compatibility?

Can't seem to find how to get this from the registry or with WMI
Hemoco
Lansweeper Alumni
I would start by creating 4 seperate reports (one for each requirement)

Then create a report like

select computername from tblcomputers where (computername not in (select computername from report1)) or (computername not in (select computername from report2)) or (computername not in (select computername from report3)) or (computername not in (select computername from report4))