diff --git a/scripts/check-cpu.ps1 b/scripts/check-cpu.ps1 index 1abaa16c..af1b8bf8 100755 --- a/scripts/check-cpu.ps1 +++ b/scripts/check-cpu.ps1 @@ -42,7 +42,7 @@ function GetCPUTemperature { } try { - Write-Progress "Querying CPU status... " + Write-Progress "Querying the CPU status... " $status = "✅" $arch = GetCPUArchitecture if ($IsLinux) { diff --git a/scripts/check-drives.ps1 b/scripts/check-drives.ps1 index 7ebb9ee9..a34a9767 100755 --- a/scripts/check-drives.ps1 +++ b/scripts/check-drives.ps1 @@ -7,8 +7,8 @@ Specifies the minimum warning level (10 GB by default) .EXAMPLE PS> ./check-drives.ps1 - ✅ Drive C: uses 49%, 512GB free of 1TB - ✅ Drive D: uses 84%, 641GB free of 4TB + ✅ Drive C: uses 49% of 1TB · 512GB free + ✅ Drive D: uses 84% of 4TB · 641GB free .LINK https://github.com/fleschutz/PowerShell .NOTES @@ -51,7 +51,7 @@ try { Write-Host "⚠️ Drive $name with $(Bytes2String $total) is nearly full, $(Bytes2String $free) free" } else { [int]$percent = ($used * 100) / $total - Write-Host "✅ Drive $name uses $percent%, $(Bytes2String $free) free of $(Bytes2String $total)" + Write-Host "✅ Drive $name uses $percent% of $(Bytes2String $total) · $(Bytes2String $free) free" } } exit 0 # success diff --git a/scripts/check-hardware.ps1 b/scripts/check-hardware.ps1 index 5e47a34a..5eff671a 100755 --- a/scripts/check-hardware.ps1 +++ b/scripts/check-hardware.ps1 @@ -21,6 +21,6 @@ & "$PSScriptRoot/check-ram.ps1" & "$PSScriptRoot/check-gpu.ps1" & "$PSScriptRoot/check-smart-devices.ps1" -& "$PSScriptRoot/check-drives.ps1" & "$PSScriptRoot/check-power.ps1" +& "$PSScriptRoot/check-drives.ps1" exit 0 # success diff --git a/scripts/check-swap-space.ps1 b/scripts/check-swap-space.ps1 index d3b59262..f682f22e 100755 --- a/scripts/check-swap-space.ps1 +++ b/scripts/check-swap-space.ps1 @@ -7,7 +7,7 @@ Specifies the minimum level in GB (10 GB by default) .EXAMPLE PS> ./check-swap-space.ps1 - ✅ Swap space uses 42%, 748MB free of 1GB + ✅ Swap space uses 42% of 1GB · 748MB free .LINK https://github.com/fleschutz/PowerShell .NOTES @@ -53,7 +53,7 @@ try { Write-Output "✅ Swap space unused, $(MB2String $Free) free" } else { [int]$Percent = ($Used * 100) / $Total - Write-Output "✅ Swap space uses $Percent%, $(MB2String $Free) free of $(MB2String $Total)" + Write-Output "✅ Swap space uses $Percent% of $(MB2String $Total) · $(MB2String $Free) free" } exit 0 # success } catch {