From 8bba46a99791bfb96c6672532d5dc2fa202b5037 Mon Sep 17 00:00:00 2001
From: Markus Fleschutz <markus.fleschutz@gmail.com>
Date: Tue, 7 Mar 2023 22:30:25 +0100
Subject: [PATCH] Update check-smart-devices.ps1

---
 Scripts/check-smart-devices.ps1 | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Scripts/check-smart-devices.ps1 b/Scripts/check-smart-devices.ps1
index 8f43b0e8..82466ae3 100755
--- a/Scripts/check-smart-devices.ps1
+++ b/Scripts/check-smart-devices.ps1
@@ -29,18 +29,18 @@ function Bytes2String { param([int64]$Bytes)
 }
 
 try {
-	Write-Progress "⏳ Searching for smartctl executable..."
+	Write-Progress "⏳ (1/3) Searching for smartmontools..."
 	$Result = (smartctl --version)
 	if ($lastExitCode -ne "0") { throw "Can't execute 'smartctl' - make sure smartmontools are installed" }
 
-	Write-Progress "⏳ Scanning S.M.A.R.T devices..."
+	Write-Progress "⏳ (2/3) Scanning S.M.A.R.T devices..."
 	if ($IsLinux) {
 		$Devices = $(sudo smartctl --scan-open)
 	} else {
 		$Devices = $(smartctl --scan-open)
 	}
 
-	Write-Progress "⏳ Querying S.M.A.R.T devices..."
+	Write-Progress "⏳ (3/3) Querying S.M.A.R.T devices..."
 	foreach($Device in $Devices) {
 		$Array = $Device.split(" ")
 		$Device = $Array[0]
@@ -66,9 +66,9 @@ try {
 		$PowerOn = $Details.power_cycle_count
 		$Hours = $Details.power_on_time.hours
 		if ($Details.smart_status.passed) { $Status = "passed" } else { $Status = "FAILED" }
+		Write-Progress -completed " "
 		Write-Host "✅ $($Capacity)$ModelName via $Protocol ($Hours hours, $($PowerOn)x on, v$($Firmware), $($Temp)°C, selftest $Status)"
 	}
-	Write-Progress -completed "Querying S.M.A.R.T devices finished."
 	exit 0 # success
 } catch {
 	"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"