From 52e3ea66a340a296c0a76e5719ae3bf89361d1ed Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 5 Apr 2021 11:03:12 +0200 Subject: [PATCH] Improved check-file-system.ps1 --- Scripts/check-file-system.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Scripts/check-file-system.ps1 b/Scripts/check-file-system.ps1 index 88ce5404..c2e33678 100755 --- a/Scripts/check-file-system.ps1 +++ b/Scripts/check-file-system.ps1 @@ -15,9 +15,10 @@ if ($Drive -eq "" ) { } try { - repair-volume -driveLetter $Drive -scan + $Result = repair-volume -driveLetter $Drive -scan + if ($Result -ne "NoErrorsFound") { throw "'repair-volume' failed" } - write-host -foregroundColor green "OK - drive $Drive is non-corrupt" + write-host -foregroundColor green "OK - file system on drive $Drive is clean" exit 0 } catch { write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"