Improved both scripts

This commit is contained in:
Markus Fleschutz 2021-02-06 18:04:42 +01:00
parent bd141509b4
commit 69d86a33a9
2 changed files with 32 additions and 12 deletions

View File

@ -2,6 +2,7 @@
<# <#
.SYNTAX ./query-smart-data.ps1 [<directory>] .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 .DESCRIPTION queries the S.M.A.R.T. data of your HDD/SSD's and saves it to the current/given directory
(use smart-data2csv.ps1 to generate a CSV table for analysis)
.LINK https://github.com/fleschutz/PowerShell .LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0 .NOTES Author: Markus Fleschutz / License: CC0
requires smartctl (smartmontools) and admin rights requires smartctl (smartmontools) and admin rights

View File

@ -1,7 +1,8 @@
#!/snap/bin/powershell #!/snap/bin/powershell
<# <#
.SYNTAX ./smart-data2csv.ps1 [<wildcard>] .SYNTAX ./smart-data2csv.ps1 [<wildcard>]
.DESCRIPTION converts the given S.M.A.R.T. data (.json) to a CSV table .DESCRIPTION converts the given S.M.A.R.T. data files (.json) to a CSV table for analysis
(use query-smart-data.ps1 to generate those .json files)
.LINK https://github.com/fleschutz/PowerShell .LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0 .NOTES Author: Markus Fleschutz / License: CC0
#> #>
@ -9,19 +10,33 @@
param([string]$Wildcard = "") param([string]$Wildcard = "")
function WriteCsvHeader { param([PSCustomObject]$File) function WriteCsvHeader { param([PSCustomObject]$File)
for ([int]$i = 0; $i -lt 20; $i++) { foreach($Entry in $File.ata_smart_attributes.table) {
$ID = $File.ata_smart_attributes.table[$i].id [int]$ID = $Entry.id
$Name = $File.ata_smart_attributes.table[$i].name $Name = $Entry.name
write-host -nonewline "$ID ($Name);" write-host -nonewline "$Name ($ID);"
} }
write-host "" write-host ""
} }
function WriteCsvRow { param([PSCustomObject]$File) function WriteCsvDataRow { param([PSCustomObject]$File)
for ([int]$i = 0; $i -lt 20; $i++) { foreach($Entry in $File.ata_smart_attributes.table) {
$ID = $File.ata_smart_attributes.table[$i].id [int]$ID = $Entry.id
$Value = $File.ata_smart_attributes.table[$i].value switch ($ID) {
write-host -nonewline "$Value;" 1 { write-host -nonewline "$($Entry.raw.value);" }
4 { write-host -nonewline "$($Entry.raw.value);" }
7 { write-host -nonewline "$($Entry.raw.value);" }
9 { write-host -nonewline "$($Entry.raw.value);" }
12 { write-host -nonewline "$($Entry.raw.value);" }
190 { write-host -nonewline "$($Entry.raw.string);" }
191 { write-host -nonewline "$($Entry.raw.value);" }
192 { write-host -nonewline "$($Entry.raw.value);" }
193 { write-host -nonewline "$($Entry.raw.value);" }
195 { write-host -nonewline "$($Entry.raw.value);" }
240 { write-host -nonewline "$($Entry.raw.string);" }
241 { write-host -nonewline "$($Entry.raw.value);" }
242 { write-host -nonewline "$($Entry.raw.value);" }
default { write-host -nonewline "$($Entry.value);" }
}
} }
write-host "" write-host ""
} }
@ -34,6 +49,7 @@ try {
$Filenames = get-childitem -path $Wildcard $Filenames = get-childitem -path $Wildcard
$ModelFamily = $ModelName = $SerialNumber = "" $ModelFamily = $ModelName = $SerialNumber = ""
[int]$Row = 1
foreach($Filename in $Filenames) { foreach($Filename in $Filenames) {
$File = get-content $Filename | ConvertFrom-Json $File = get-content $Filename | ConvertFrom-Json
@ -62,8 +78,11 @@ try {
} }
} }
WriteCsvHeader $File if ($Row -eq 1) {
WriteCsvRow $File WriteCsvHeader $File
}
WriteCsvDataRow $File
$Row++
} }
exit 0 exit 0
} catch { } catch {