Hey all
I'm looking to retrieve a machine's windows experience rating in C#. If possible I would also like to retrieve the numbers for each component (Graphics, RAM etc.)
Is this possible?
|
|
Hey all I'm looking to retrieve a machine's windows experience rating in C#. If possible I would also like to retrieve the numbers for each component (Graphics, RAM etc.) Is this possible?
|
||
|
|
|
|
Every time the user goes through control panel to calculate the Windows Experience Rating, the system creates a new file in You need to find the most recent file (they are named with the most significant date first, so finding the latest file is trivial). These files are xml files and are easy to parse with XmlReader or other xml parser. The section you are interested in is
|
|||
|
|
|
|
Here is a snippet for VB.NET. Converted to C# (using this, I haven't actually tested the code yet, though it looks to be fine).
I guess it only returns the overall rating, but hopefully it should get you started at least. It may only be a matter of changing a filename/parameter to get the individual ratings. |
|||
|
|