mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 22:38:34 +02:00
Update check-smart-devices.ps1
This commit is contained in:
parent
c72dfb2c23
commit
a880bd71c5
@ -5,7 +5,7 @@
|
|||||||
This PowerShell script queries and prints your S.M.A.R.T. HDD/SSD devices.
|
This PowerShell script queries and prints your S.M.A.R.T. HDD/SSD devices.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./check-smart-devices
|
PS> ./check-smart-devices
|
||||||
✅ Device HFM256GD3JX016N (238GB) via NVMe, 29°C, 71 hours, 126x on, selftest passed.
|
✅ Device HFM256GD3JX016N (256GB) via NVMe, 29°C, 71 hours, 126x on, selftest passed.
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
@ -36,11 +36,11 @@ try {
|
|||||||
}
|
}
|
||||||
$ModelName = $Details.model_name
|
$ModelName = $Details.model_name
|
||||||
$Protocol = $Details.device.protocol
|
$Protocol = $Details.device.protocol
|
||||||
[int]$GBytes = $Details.user_capacity.bytes / 1GB
|
[int]$GBytes = $Details.user_capacity.bytes / (1000 * 1000 * 1000)
|
||||||
if ($GBytes -eq 0) {
|
if ($GBytes -eq 0) {
|
||||||
$Capacity = ""
|
$Capacity = ""
|
||||||
} else {
|
} else {
|
||||||
$Capacity = "($GBytes GB) "
|
$Capacity = "($($GBytes)GB) "
|
||||||
}
|
}
|
||||||
$Temp = $Details.temperature.current
|
$Temp = $Details.temperature.current
|
||||||
$Firmware = $Details.firmware_version
|
$Firmware = $Details.firmware_version
|
||||||
|
Loading…
Reference in New Issue
Block a user