
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2009 07:25 PM
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.
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.
Labels:
- Labels:
-
Archive
6 REPLIES 6

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2010 10:09 PM
Does anyone have a solution for this report? This would really help enterprises evaluate their Win7 readiness.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2009 09:34 PM
Direct X version is not the problem, the problem is "WDDM 1.0 or higher driver"

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2009 09:30 PM
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

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2009 03:38 PM
Do you have any tips on determining the DirectX 9 compatibility?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2009 07:59 PM
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

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2009 07:36 PM
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))
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))
