PowerShell/Scripts/check-cpu-temp.ps1

35 lines
982 B
PowerShell
Raw Normal View History

2021-04-21 19:53:52 +02:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX check-cpu-temp.ps1
2021-03-22 20:10:18 +01:00
.DESCRIPTION checks the CPU temperature
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-03-20 16:13:54 +01:00
#>
try {
if (test-path "/sys/class/thermal/thermal_zone0/temp") {
2021-03-29 17:09:59 +02:00
[int]$IntTemp = get-content "/sys/class/thermal/thermal_zone0/temp"
$Temp = [math]::round($IntTemp / 1000.0, 1)
2021-03-20 16:13:54 +01:00
} else {
2021-03-29 16:21:03 +02:00
write-warning "Sorry, no CPU temperature available"
2021-03-20 16:13:54 +01:00
exit 0
}
2021-03-20 16:23:49 +01:00
if ($Temp -gt "80") {
2021-04-03 17:27:19 +02:00
write-error "FAIL - $Temp °C CPU temperature is too high!"
2021-03-29 16:21:03 +02:00
exit 1
} elseif ($Temp -lt "-20") {
2021-04-03 17:27:19 +02:00
write-error "FAIL - $Temp °C CPU temperature is too low!"
2021-03-29 16:21:03 +02:00
exit 1
} elseif ($Temp -gt "50") {
2021-04-03 17:27:19 +02:00
write-warning "$Temp °C CPU temperature is quite high"
2021-03-29 16:21:03 +02:00
} elseif ($Temp -lt "0") {
2021-04-03 17:27:19 +02:00
write-warning "$Temp °C CPU temperature is quite low"
2021-03-20 16:23:49 +01:00
} else {
2021-04-17 18:54:45 +02:00
"✔️ $Temp °C CPU temperature"
2021-03-20 16:23:49 +01:00
}
2021-03-20 16:13:54 +01:00
exit 0
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-03-20 16:13:54 +01:00
exit 1
}