Right, in my quest I just landed here:
ReliabilityMetricsProvider Provider
And all I can say is that the second WMI class (Win32_ReliabilityStabilityMetrics class) works as expected and returns all results in PowerShell:
[code]
PS C:\WINDOWS\system32> get-wmiobject Win32_ReliabilityStabilityMetrics -computername 127.0.0.1 -property "SystemStabilityIndex" |
>> select-object -first 1 SystemStabilityIndex | format-table *
SystemStabilityIndex
--------------------
5.949
[/code]
matching what I see in the Reliability Monitor, the first one (Win32_ReliabilityRecords class) seems also returning some errors:
[code]
PS C:\WINDOWS\system32> get-wmiobject Win32_ReliabilityRecords -computername 127.0.0.1 -property Message |
>> select-object -first 5 Message | format-list *
Message : Installation Successful: Windows successfully installed the following update:
9NBLGGH4QGHW-Microsoft.MicrosoftStickyNotes
get-wmiobject : Generic failure
At line:1 char:1
+ get-wmiobject Win32_ReliabilityRecords -computername 127.0.0.1 -prope ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [Get-WmiObject], ManagementException
+ FullyQualifiedErrorId : GetWMIManagementException,Microsoft.PowerShell.Commands.GetWmiObjectCommand
[/code]
Sticky notes app got actually updated today, so this entry is present somewhere. I am investigating...