Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-28-2013 10:28 PM
I would like to see a report for Vista, Windows 7, Windows 8 that reports the "Windows Experience Index"
Base Score:
Components
Processor:
Memory (RAM):
Graphics:
Gaming Graphics:
Primary hard disk:
Is there a way to retrieve this? Or is the a future Feature request?
Thanks, Tony
Base Score:
Components
Processor:
Memory (RAM):
Graphics:
Gaming Graphics:
Primary hard disk:
Is there a way to retrieve this? Or is the a future Feature request?
Thanks, Tony
Labels:
- Labels:
-
Product Feedback
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-29-2013 05:12 PM
The WMI class that stores this information is not currently scanned by Lansweeper. This feature is on our customer wish list, but we do not yet have a release date for it.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-28-2013 11:58 PM
I can use the following VBScript to capture remotely, but would like to see this information in Lansweeper.
strCompName = Inputbox("Get Hardware Performance Ratings" & vbcrlf & "of a Remote computer," & vbcrlf & "Input the Computer Name:")
Set objWMIservices = GetObject("winmgmts:\\" & strCompName & "\root\cimv2")
Set colWSA = objWMIservices.ExecQuery("Select * From Win32_WinSAT")
For Each objItem in colWSA
Wscript.Echo "Hardware Performance Ratings"
Wscript.Echo "Processor : " & objItem.CPUScore
Wscript.Echo "Memory: " & objItem.MemoryScore
Wscript.Echo "Graphics: " & objItem.GraphicsScore
Wscript.Echo "Gaming graphics: " & objItem.D3DScore
Wscript.Echo "Primary hard disk: " & objItem.DiskScore
next
strCompName = Inputbox("Get Hardware Performance Ratings" & vbcrlf & "of a Remote computer," & vbcrlf & "Input the Computer Name:")
Set objWMIservices = GetObject("winmgmts:\\" & strCompName & "\root\cimv2")
Set colWSA = objWMIservices.ExecQuery("Select * From Win32_WinSAT")
For Each objItem in colWSA
Wscript.Echo "Hardware Performance Ratings"
Wscript.Echo "Processor : " & objItem.CPUScore
Wscript.Echo "Memory: " & objItem.MemoryScore
Wscript.Echo "Graphics: " & objItem.GraphicsScore
Wscript.Echo "Gaming graphics: " & objItem.D3DScore
Wscript.Echo "Primary hard disk: " & objItem.DiskScore
next