2021-08-29 17:50:03 +02:00
|
|
|
|
#Requires -RunAsAdministrator
|
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
query-smart-data.ps1 [<directory>]
|
|
|
|
|
.DESCRIPTION
|
|
|
|
|
Queries the S.M.A.R.T. data of your HDD/SSD's and saves it to the current/given directory
|
2021-08-29 17:50:03 +02:00
|
|
|
|
(use smart-data2csv.ps1 to generate a CSV table for analysis).
|
|
|
|
|
|
|
|
|
|
Requires smartctl (smartmontools) and admin rights. For automation copy this script to /etc/cron.daily
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> .\query-smart-data.ps1
|
2021-08-29 17:50:03 +02:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz · License: CC0
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2021-02-03 20:53:56 +01:00
|
|
|
|
#>
|
|
|
|
|
|
2021-07-15 15:51:22 +02:00
|
|
|
|
param([string]$Directory = "")
|
2021-02-03 20:53:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function CheckIfInstalled {
|
|
|
|
|
try {
|
|
|
|
|
$null = $(smartctl --version)
|
|
|
|
|
} catch {
|
|
|
|
|
write-error "smartctl is not installed - make sure smartmontools are installed"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
if ($Directory -eq "") {
|
|
|
|
|
$Directory = "$PWD"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
write-output "(1) Checking for 'smartctl'..."
|
|
|
|
|
CheckIfInstalled
|
|
|
|
|
|
|
|
|
|
write-output "(2) Scanning for S.M.A.R.T. devices..."
|
|
|
|
|
$Devices = $(smartctl --scan-open)
|
|
|
|
|
|
|
|
|
|
[int]$DevNo = 1
|
|
|
|
|
foreach($Device in $Devices) {
|
|
|
|
|
write-output "(3) Querying data from S.M.A.R.T. device $Device..."
|
|
|
|
|
|
|
|
|
|
$Time = (Get-Date)
|
|
|
|
|
$Filename = "$Directory/SMART-dev$($DevNo)-$($Time.Year)-$($Time.Month)-$($Time.Day).json"
|
|
|
|
|
write-output "(4) Saving data to $Filename..."
|
|
|
|
|
|
|
|
|
|
$Cmd = "smartctl --all --json " + $Device
|
|
|
|
|
|
|
|
|
|
Invoke-Expression $Cmd > $Filename
|
|
|
|
|
$DevInfo++
|
|
|
|
|
}
|
2021-08-24 20:46:03 +02:00
|
|
|
|
|
|
|
|
|
"✔️ Done."
|
2021-02-03 20:53:56 +01:00
|
|
|
|
exit 0
|
|
|
|
|
} catch {
|
2021-05-02 21:30:48 +02:00
|
|
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-02-03 20:53:56 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|