November 8th, 2013

PowerTip: Use PowerShell to Determine System Stability

Doctor Scripto
Scripter

Summary: Use Windows PowerShell to determine the stability of your system.

Hey, Scripting Guy! Question How can I use Windows PowerShell 4.0 on my laptop running Windows 7 to find out how stable my system is?

Hey, Scripting Guy! Answer Use the Get-CimInstance cmdlet to query the Win32_ReliabilityStabilityMetrics, and pipe
          the result to Measure-Object to determine the average value of the SystemStabilityIndex:

Get-CimInstance Win32_ReliabilityStabilityMetrics | measure SystemStabilityIndex -Average 

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.