mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-05 06:48:25 +02:00
Update check-cpu.ps1
This commit is contained in:
parent
843c9dbfa1
commit
b5ae3594da
@ -1,11 +1,11 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Checks the CPU temperature
|
Queries and prints CPU details
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This PowerShell script queries the CPU temperature and returns it.
|
This PowerShell script queries CPU details (name, type, speed, temperature, etc.) and prints it.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./check-cpu
|
PS> ./check-cpu
|
||||||
CPU is 30.3°C warm.
|
✅ CPU AMD Ryzen 5 5500U with Radeon Graphics (CPU0, 2100MHz, 31.3°C)
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
@ -30,23 +30,27 @@ function GetCPUTemperatureInCelsius {
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
Write-Progress "Querying CPU details ..."
|
||||||
$Celsius = GetCPUTemperatureInCelsius
|
$Celsius = GetCPUTemperatureInCelsius
|
||||||
if ($Celsius -eq 99999.9) {
|
if ($Celsius -eq 99999.9) {
|
||||||
$Temp = "no temp"
|
$Temp = "no temp"
|
||||||
} elseif ($Celsius -gt 50) {
|
} elseif ($Celsius -gt 50) {
|
||||||
$Temp = "$($Celsius)°C hot"
|
$Temp = "⚠️$($Celsius)°C"
|
||||||
} elseif ($Celsius -gt 0) {
|
} elseif ($Celsius -lt 0) {
|
||||||
$Temp = "$($Celsius)°C warm"
|
$Temp = "⚠️$($Celsius)°C"
|
||||||
} else {
|
} else {
|
||||||
$Temp = "$($Celsius)°C cold"
|
$Temp = "$($Celsius)°C"
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($IsLinux) {
|
if ($IsLinux) {
|
||||||
"✅ CPU is $Temp"
|
"✅ CPU is $Temp"
|
||||||
} else {
|
} else {
|
||||||
$Details = Get-WmiObject -Class Win32_Processor
|
$Details = Get-WmiObject -Class Win32_Processor
|
||||||
$DeviceName = $Details.Name.trim()
|
$CPUName = $Details.Name.trim()
|
||||||
"✅ CPU $($DeviceName) ($($Details.DeviceID), $($Details.MaxClockSpeed)MHz, $Temp)"
|
$DeviceID = $Details.DeviceID
|
||||||
|
$Speed = "$($Details.MaxClockSpeed)MHz"
|
||||||
|
$Socket = $Details.SocketDesignation
|
||||||
|
"✅ CPU $CPUName ($DeviceID, $Speed, socket $Socket, $Temp)"
|
||||||
}
|
}
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
|
Loading…
Reference in New Issue
Block a user