jl168 / open-hardware-monitor

Automatically exported from code.google.com/p/open-hardware-monitor
0 stars 0 forks source link

cmd output temperatures for use in XBMC #541

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
http://wiki.xbmc.org/?title=advancedsettings.xml#.3Ccputempcommand.3E

Can you add a command line feature so XBMC can read CPU or GPU temperature data?

Original issue reported on code.google.com by zvonimir...@gmail.com on 19 Nov 2013 at 3:10

GoogleCodeExporter commented 9 years ago
You can do this by using a console .vbs  program

Save the code in between the code tags as intlcpu1.vbs
<code>
strComputer = "." 
Set objWMIService = GetObject("winmgmts:\\" & strComputer & 
"\root\OpenHardwareMonitor") 
Set colItems = objWMIService.ExecQuery( _
    "SELECT * FROM Sensor WHERE Identifier = '/intelcpu/0/clock/1'",,48) 
For Each objItem in colItems 
    Wscript.Echo objItem.Value
Next
</code>

call intlcpu1.vbs with 
<code>
cscript intlcpu1.vbs //Nologo
</code>

Original comment by pauldriver on 5 Jan 2014 at 3:23