create gettemp.cmd file. @echo off for /f "skip=1 tokens=2 delims==" %%A in ('wmic /namespace:\\root\wmi PATH MSAcpi_ThermalZoneTemperature get CurrentTemperature /value') do set /a "HunDegCel=(%%~A*10)-27315" echo %HunDegCel:~0,-2%.%HunDegCel:~-2% Degrees Celsius pause run gettemp.cmd or dblclick file ps motherboard may not support Answer from mikech76 on reddit.com
🌐
ALCPU
alcpu.com › CoreTemp
Core Temp
May 22, 2026 - Core Temp is a compact, no fuss, small footprint, yet powerful program to monitor processor temperature and other vital information.
Discussions

Simple command to monitor Windows 10 temperature?
I feel like this has probably been address before, although I was wondering if someone is aware of a simple command I can run to report the internal temperature of a Windows 10 PC? I think all computers monitor the temperature, although I’ve only found third party software that can tap into ... More on community.spiceworks.com
🌐 community.spiceworks.com
1
31
December 5, 2022
How to check cpu temp Windows 10
There is no such option to check CPU temperature in Windows 10. More on learn.microsoft.com
🌐 learn.microsoft.com
3
1497
Total noob question but how can I see CPU/GPU temps?
In Windows? Install a tool like Open Hardware Monitor . More on reddit.com
🌐 r/buildapc
108
406
February 8, 2017
powershell - Get CPU temperature in CMD/POWER Shell - Stack Overflow
Admin or no admin makes no difference. Apparently the query isn't supported on my Windows. 2021-01-10T18:49:06.073Z+00:00 ... This works, but is not the CPU temperature. Result is given in units of C*10 to avoid floats from the sensor. So in this case you need to divide the sensor value by ... More on stackoverflow.com
🌐 stackoverflow.com
🌐
Open Hardware Monitor
openhardwaremonitor.org
Open Hardware Monitor - Core temp, fan speed and voltages in a free software gadget
The CPU temperature can be monitored by reading the core temperature sensors of Intel and AMD processors. The sensors of ATI and Nvidia video cards as well as SMART hard drive temperature can be displayed. The monitored values can be displayed in the main window, in a customizable desktop gadget, or in the system tray. The free Open Hardware Monitor software runs on 32-bit and 64-bit Microsoft Windows XP / Vista / 7 / 8 / 8.1 / 10 and any x86 based Linux operating systems without installation.
🌐
Tom's Hardware
tomshardware.com › pc components › cpus
How to Check Your PC's CPU Temperature | Tom's Hardware
September 30, 2025 - More advanced users who want the ... keep a close eye on the CPU temperatures and back off once they reach too high (above 95C). We consider an ideal stress test to be one hour long, though your maximum temperature will likely level off after ...
🌐
Spiceworks
community.spiceworks.com › hardware & infrastructure
Simple command to monitor Windows 10 temperature? - Hardware & Infrastructure - Spiceworks Community
December 5, 2022 - I feel like this has probably been address before, although I was wondering if someone is aware of a simple command I can run to report the internal temperature of a Windows 10 PC? I think all computers monitor the temperature, although I’ve only found third party software that can tap into ...
🌐
Microsoft Store
apps.microsoft.com › detail › 9n4rgs8pmt7s
hotcpu - Free download and install on Windows | Microsoft Store
May 8, 2026 - HotCPU is a lightweight, non-intrusive system tray utility that monitors your computer's hardware temperatures in real-time. Keep an eye on your system's health without opening any windows – HotCPU lives in your system tray and displays temperature readings at a glance.
Find elsewhere
🌐
HP
hp.com › us-en › shop › tech-takes
Consumer and Business Technology Trends | HP® Tech Takes
December 30, 2025 - How to Factory Reset Windows: Complete Guide for Windows 10 and 11 · HP Printer Software Download: How To Download And Install The Latest Version · 10 Best Sites for Free Music Downloads · Booting from USB Windows 10: A Comprehensive Guide · gaming · hp omen ·
🌐
YouTube
youtube.com › watch
How to Check CPU Temperature on Windows 10/11 - YouTube
This tutorial will guide you through how to check CPU temperature on Windows 10 and Windows 11 PC laptop and desktop to know whether your PC temperature is h...
Published   February 19, 2025
🌐
Avast
avast.com › c-how-to-check-cpu-temperature
How to Check CPU Temp and Monitor Average Core Temp
April 1, 2026 - ... Go to Start > Power button > Restart. As your computer starts up, repeatedly press the key indicated on the screen (usually Delete, F2, F10, Esc, or F12). Select Hardware Monitor (on some devices, this might be under PC Health Status, H/W ...
🌐
CPUID
cpuid.com › softwares › hwmonitor.html
HWMONITOR | Softwares | CPUID
Added CPU and GPU utilization. Added DRAM power (Haswell processors). Intel X99 Platform (DDR4 and Haswell-E). Support for Windows 10.
🌐
TechPowerUp
techpowerup.com › realtemp
Real Temp - CPU temperature monitoring
High temperature alarm and shutdown feature based on CPU or NVIDIA GPU temperature. No installation or registry modifications required. Support for Windows 2000 / XP / Vista / Windows 7 / Windows 8 / Windows 10 (32 & 64 bit) / Windows 11
🌐
Panda Security
pandasecurity.com › en › mediacenter › how-to-check-cpu-temp
How to Check Your CPU Temperature + 10 Tips to Keep It Down
June 17, 2025 - If your computer is overheating, you’ll want to check your CPU temperature and troubleshoot your PC accordingly. Explore how to check CPU temps on Windows 10 and 11, the best CPU temp monitoring apps, the range of good temps for CPU safety, why your CPU may be overheating and what you can ...
🌐
YouTube
youtube.com › watch
How to Check CPU Temperature Windows 10 & Windows 11 - YouTube
I’ll show you how to check CPU temperature on Windows 10 and Windows 11 using a free and easy tool.Music track: Warm Cup of Coffe by MoaviiSource: https://fr...
Published   October 17, 2025
Top answer
1 of 7
25

you can use this code :

Copyfunction Get-Temperature {
    $t = Get-WmiObject MSAcpi_ThermalZoneTemperature -Namespace "root/wmi"
    $returntemp = @()

    foreach ($temp in $t.CurrentTemperature)
    {


    $currentTempKelvin = $temp / 10
    $currentTempCelsius = $currentTempKelvin - 273.15

    $currentTempFahrenheit = (9/5) * $currentTempCelsius + 32

    $returntemp += $currentTempCelsius.ToString() + " C : " + $currentTempFahrenheit.ToString() + " F : " + $currentTempKelvin + "K"  
    }
    return $returntemp
}

Get-Temperature
2 of 7
6

You can use Open Hardware Monitor it's an open source software (MPL v2). You can access the command line version here:

OpenHardwareMonitorReport.zip

Example part of the output:

CopyPS C:\Users\myuser\OpenHardwareMonitorReport> .\OpenHardwareMonitorReport.exe

Open Hardware Monitor Report

--------------------------------------------------------------------------------

Version: 0.8.0.2

--------------------------------------------------------------------------------

Common Language Runtime: 4.0.30319.42000
Operating System: Microsoft Windows NT 6.2.9200.0
Process Type: 32-Bit

--------------------------------------------------------------------------------

Sensors

|
+- HP 00F52W (/mainboard)
|
+- Intel Core i7-3770 (/intelcpu/0)
|  +- Bus Speed      :  99.7734  99.7734  99.7784 (/intelcpu/0/clock/0)
|  +- CPU Core #1    :  3691.62  3691.62  3791.58 (/intelcpu/0/clock/1)
|  +- CPU Core #2    :  3691.62  3691.62  3791.58 (/intelcpu/0/clock/2)
|  +- CPU Core #3    :  3791.39  3791.39  3891.36 (/intelcpu/0/clock/3)
|  +- CPU Core #4    :  3691.62  3691.62  3891.36 (/intelcpu/0/clock/4)
|  +- CPU Core #1    :       42       42       43 (/intelcpu/0/temperature/0)
|  +- CPU Core #2    :       43       37       43 (/intelcpu/0/temperature/1)
|  +- CPU Core #3    :       42       35       42 (/intelcpu/0/temperature/2)
|  +- CPU Core #4    :       45       41       45 (/intelcpu/0/temperature/3)
|  +- CPU Package    :       45       43       45 (/intelcpu/0/temperature/4)
  • Open Hardware Monitor Official website
  • link to issue where the command line version is linked: #776
  • Pending pull request with more recent version: https://github.com/openhardwaremonitor/openhardwaremonitor/pull/1115#issuecomment-616230088
🌐
Wikihow
wikihow.com › computers and electronics › computers › computer hardware › how to monitor your cpu temperature: 4 easy tools
How to Monitor Your CPU Temperature: 4 Easy Tools
February 26, 2024 - Click Update & Security (Windows 10) or System (Windows 11). Click Recovery. ... Click Troubleshoot. Click Advanced options. Click UEFI Firmware settings. Click Restart. ... Find the Hardware Monitor. Different BIOS programs will have different section labels. Some of the more common labels are H/W Monitor, Status, PC Health, etc. ... Check your CPU temperature...
🌐
PCWorld
pcworld.com › home › how-to › pcs & components how-to
How to check your PC's CPU temperature | PCWorld
February 18, 2026 - Keeping tabs on your CPU temperatures is crucial when you’re overclocking your PC’s processor, too—you don’t want to accidentally push the performance pedal too far to the metal when you’re supercharging your pricey (but worth every penny) Ryzen 7 9850X3D, after all. Bizarrely, Windows doesn’t offer any way to check your computer’s CPU temperature.
🌐
Digital Citizen
digitalcitizen.life › how-to-see-cpu-temp-on-windows-10
How to See CPU Temp on Windows 10
November 21, 2025 - Windows 10 doesn’t include a built-in temperature widget. Firmware and third-party apps fill that gap. Are monitoring apps safe? Yes, as long as you use reputable apps. Internal scans in the Microsoft ecosystem recognize the major tools as safe. Can I check CPU temp on a laptop?