Summary: Use Windows PowerShell to report on computer performance.
How can I easily obtain the performance of local or remote computer by using Windows PowerShell?
Query the Win32_WinSat class.
In Windows PowerShell 3.0, use the Get-CimInstance cmdlet:
Get-CimInstance Win32_WinSAT
In Windows PowerShell 1.0 or Windows PowerShell 2.0, use the Get-WmiObject cmdlet:
Get-WmiObject Win32_WinSAT