-
-
Notifications
You must be signed in to change notification settings - Fork 711
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reading the library via PowerShell #1260
Comments
Is there any way to retrieve the motherboard temperature using PowerShell, as the first script failed to do so while the program running outputs the motherboard temperature? |
This can be done via a running instance of the LibreHardwareMonitor application, here is an example on my system:
Output:
|
The problem is that this data can only be retrieved through the WMI/CIM system or REST API, but it is impossible to retrieve all the data through the library, even using latency (regardless of whether the application process is running or not). |
Good afternoon!
I'm writing a module for PowerShell (repository: https://github.com/Lifailon/PowerShellHardwareMonitor) and I have a problem when reading data directly from the library (LibreHardwareMonitorLib.dll). On two different machines, I'm not getting readings from all the sensors. If I use the CIM (Common Information Model), I get all sensors (there are many more than OpenHardwareMonitor). In the same way I can read the data of all sensors via REST API. All workarounds need a working instance of the application, but I would like to read from the library.
Can you suggest what the problem is related to? Thank you!
Examples:
Output:
Working example via CIM:
Get-Sensor -Libre | Format-Table
The text was updated successfully, but these errors were encountered: