mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-05 06:48:25 +02:00
Update check-smart-devices.ps1
This commit is contained in:
parent
32df71fd8d
commit
289983d888
@ -12,6 +12,22 @@
|
|||||||
Author: Markus Fleschutz | License: CC0
|
Author: Markus Fleschutz | License: CC0
|
||||||
#>
|
#>
|
||||||
|
|
||||||
|
function Bytes2String { param([int64]$Bytes)
|
||||||
|
if ($Bytes -lt 1000) { return "$Bytes bytes" }
|
||||||
|
$Bytes /= 1000
|
||||||
|
if ($Bytes -lt 1000) { return "$($Bytes)KB" }
|
||||||
|
$Bytes /= 1000
|
||||||
|
if ($Bytes -lt 1000) { return "$($Bytes)MB" }
|
||||||
|
$Bytes /= 1000
|
||||||
|
if ($Bytes -lt 1000) { return "$($Bytes)GB" }
|
||||||
|
$Bytes /= 1000
|
||||||
|
if ($Bytes -lt 1000) { return "$($Bytes)TB" }
|
||||||
|
$Bytes /= 1000
|
||||||
|
if ($Bytes -lt 1000) { return "$($Bytes)PB" }
|
||||||
|
$Bytes /= 1000
|
||||||
|
if ($Bytes -lt 1000) { return "$($Bytes)EB" }
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Write-Progress "⏳ Step 1/3 - Searching for smartctl executable..."
|
Write-Progress "⏳ Step 1/3 - Searching for smartctl executable..."
|
||||||
$Result = (smartctl --version)
|
$Result = (smartctl --version)
|
||||||
@ -36,18 +52,18 @@ try {
|
|||||||
}
|
}
|
||||||
$ModelName = $Details.model_name
|
$ModelName = $Details.model_name
|
||||||
$Protocol = $Details.device.protocol
|
$Protocol = $Details.device.protocol
|
||||||
[int]$GBytes = $Details.user_capacity.bytes / (1000 * 1000 * 1000)
|
[int64]$GBytes = $Details.user_capacity.bytes
|
||||||
if ($GBytes -eq 0) {
|
if ($GBytes -gt 0) {
|
||||||
$Capacity = ""
|
$Capacity = "$(Bytes2String $GBytes) "
|
||||||
} else {
|
} else {
|
||||||
$Capacity = "($($GBytes)GB) "
|
$Capacity = ""
|
||||||
}
|
}
|
||||||
$Temp = $Details.temperature.current
|
$Temp = $Details.temperature.current
|
||||||
$Firmware = $Details.firmware_version
|
$Firmware = $Details.firmware_version
|
||||||
$PowerOn = $Details.power_cycle_count
|
$PowerOn = $Details.power_cycle_count
|
||||||
$Hours = $Details.power_on_time.hours
|
$Hours = $Details.power_on_time.hours
|
||||||
if ($Details.smart_status.passed) { $Status = "passed" } else { $Status = "FAILED" }
|
if ($Details.smart_status.passed) { $Status = "passed" } else { $Status = "FAILED" }
|
||||||
"✅ Device $ModelName $($Capacity)via $Protocol, $($Temp)°C, $($Hours) hours, $($PowerOn)x on, v$($Firmware), selftest $Status."
|
"✅ $($Capacity)$ModelName via $Protocol, $($Temp)°C, $($Hours) hours, $($PowerOn)x on, v$($Firmware), selftest $Status."
|
||||||
}
|
}
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
|
Loading…
Reference in New Issue
Block a user