Skip to content

Instantly share code, notes, and snippets.

View foxpy's full-sized avatar
🏠
Working from home

Murad foxpy

🏠
Working from home
  • Hadron Labs
  • Cyprus, Nicosia
  • 00:55 (UTC +03:00)
View GitHub Profile
@jeffa00
jeffa00 / Get-Temperature
Last active July 28, 2024 20:10
Get CPU Temperature With PowerShell
# Please note that this is quite old at this point and may or may not work for you. I leave it here for historical purposes
# and just in case it can help someone. I think I may have been using Windows 7 when I wrote this.
function Get-Temperature {
$t = Get-WmiObject MSAcpi_ThermalZoneTemperature -Namespace "root/wmi"
$currentTempKelvin = $t.CurrentTemperature / 10
$currentTempCelsius = $currentTempKelvin - 273.15
$currentTempFahrenheit = (9/5) * $currentTempCelsius + 32