PowerShell/Scripts/query-smart-data.ps1

56 lines
1.4 KiB
PowerShell
Raw Normal View History

2021-02-09 19:30:45 +01:00
#!/bin/powershell
2021-02-03 20:53:56 +01:00
<#
.SYNTAX ./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-02-06 18:04:42 +01:00
(use smart-data2csv.ps1 to generate a CSV table for analysis)
2021-02-03 20:53:56 +01:00
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-02-04 19:42:39 +01:00
requires smartctl (smartmontools) and admin rights
for automation copy this script to /etc/cron.daily
2021-02-03 20:53:56 +01:00
#>
#Requires -RunAsAdministrator
2021-02-18 20:17:55 +01:00
param($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-02-10 19:25:48 +01:00
write-host -foregroundColor green "Done."
2021-02-03 20:53:56 +01:00
exit 0
} catch {
2021-02-16 10:03:20 +01:00
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-02-03 20:53:56 +01:00
exit 1
}