The Open Hardware Monitor is a free open source software that monitors temperature sensors, fan speeds, voltages, load and clock speeds of a computer.
Questions tagged [openhardwaremonitor]
45 questions
6
votes
1 answer
How to access wmi in python?
So I am trying to access the data from here
in Python. As you can see, it uses wmi. I have tried to use wmi in python before but I am having trouble interpreting the data they are giving me. Please be patient with me as I am a noob to how wmi works.…

ryan27968
- 437
- 3
- 7
- 14
3
votes
0 answers
C# How can i get/read the CPU Voltage (Windows)
Im trying to get the CPU Voltage but without any success.
I tried the OpenMonitorHardware but it seems like that there is no voltage sensor
public float GetCpuVoltage() {
Computer computer = new Computer(){ CPUEnabled = true };
…

Crylia
- 41
- 9
3
votes
0 answers
Read CPU temperature from windows 10 running system using python
I know that this question been asked many times, I even tried most of them, but I'm not satisfied on the results that I get.
First of all I'll explain my problem. I have tried the following code to get the cpu temperature (running it in admin mode):…

Developer
- 103
- 2
- 10
3
votes
1 answer
Get CPU Temperature using Open Hardware Monitor
I am trying to use the OpenHardwareMonitorLib DLL to get the temperature of my CPU \ cores, however this doesn't return the temperature for me.
I have looked around and seen that this is a problem almost everywhere but I cannot get this to work.
I…

Simon Price
- 455
- 2
- 6
- 17
2
votes
1 answer
C# - How to get a CPU Temp / CPU Load / Current Voltage / VID Voltage / Current Frequency with LibreHardwareMonitor?
For my C# .Net Framework project I need to get 5 values:
CPU Load
CPU Temp
Current Voltage
VID Voltage
Current Frequency
I tried WMI, but it doesn't work with modern CPUs, and can't get those values correctly.
After doing some research, I figured…

DIY Mods
- 79
- 2
- 9
2
votes
0 answers
Unable to get sensors via WMI for Open Hardware Monitor
Open Hardware Monitor is not giving any instances to WMI
I'm running the latest version of open hardware monitor 0.8.0 beta and Windows 10 pro 1903
Using wmi explorer i was able to find the root/OpenHardwareMonitor path, click through to Sensors but…

doghousedean
- 74
- 12
2
votes
3 answers
How to Loop through JSON objects with many JSON array nodes jQuery
I'm trying to loop through JSON objects with jQuery in an AJAX call and then print the objects in html page. I came across this stackoverflow post that shows you how to loop through json objects. Which worked to a certain point.
I am able to…

Vlad Vasiljev
- 55
- 7
2
votes
0 answers
Why can't I get my CPU fan speed info or data or anything other than temperature?
I'm using OpenHardwareMonitorLib.dll in my project. I have this function in a class:
public static void cpuView(bool pause , CpuTemperature cpuTemp , Form1 f1 , List myData , float? myCpuTemp , Button b1)
{
if (pause ==…

user2065612
- 461
- 1
- 7
- 20
1
vote
0 answers
Getting motherboard sensor values using OpenHardwareMonitor in c#
Using the Computer class I successfully retrieved CPU sensor values.
However, when it comes to Mainboard, sensor values are not shown every time I run the application. In the most cases the information is not shown, but sometimes it is.
What could…

Marko
- 11
- 4
1
vote
2 answers
OpenHardwareMonitor not showing all sensors
I am trying to get all the sensors that OpenHardwareMonitor can give.
But i get almost all load type sensors ando not many temperature sensors:
This is my code:
{
Computer myComputer = new Computer();
myComputer = new…

Michael Canseco
- 21
- 4
1
vote
1 answer
Executing C# code in PowerShell results in an error - verify that the assembly containing this type is loaded
I am trying to execute below piece of code in PowerShell and I'm getting below error (please refer screenshot). I already tried many ways to handle this error but there is no luck.
I referred to these…

Shivani G
- 71
- 2
- 13
1
vote
0 answers
C# How to set affinity for just one method, apart from the rest of the program?
I working on a small testing/monitoring tool for the CPU.
It uses an OpenHardwareMonitor and Timer to poll the system and obtain CPU temp, frequency, PPT, etc., and also can benchmark the CPU.
When I run the single-core test, I set affinity to a…

New Coder
- 45
- 1
- 5
1
vote
1 answer
OpenhardwareMonitorLib System.IO.FileNotFoundException
I'm trying to read cpu temperature by using OpenhardwareMonitorLib.dll in c#. This is my code:
using System;
using System.Collections.Generic;
using System.Text;
using OpenHardwareMonitor.Hardware;
namespace FanController.Model {
public class…

Beppos
- 11
- 2
1
vote
1 answer
Grabbing GPU Utilization using openhardwaremonitor
I'm trying to get the current utilization of my GPU using openhardwaremonitor
I've used SensorType.Load to get the utilization of the CPU but for the GPU it is instead returning the memory usage. I'm not sure exactly what to do
if…

Blake
- 33
- 4
1
vote
2 answers
Keeping UI Responsive with foreach loop in WinForms
I have created a Winforms App that uses the Open Hardware Monitor to display PC temps in a gauge format using Live Charts. I am aware that the following code causes the UI to become unresponsive as the charts are updated but I am not able to figure…

Jack Foulkes
- 187
- 3
- 15