diff --git a/scripts/install-updates.ps1 b/scripts/install-updates.ps1 index 570a95cb..7f02f43b 100755 --- a/scripts/install-updates.ps1 +++ b/scripts/install-updates.ps1 @@ -3,10 +3,10 @@ Installs software updates .DESCRIPTION This PowerShell script installs software updates for the local machine (might need admin rights). - NOTE: Use the script 'list-updates.ps1' to list the latest software updates before. + HINT: Use the script 'list-updates.ps1' to list the latest software updates in advance. .EXAMPLE PS> ./install-updates.ps1 - ⏳ (1/2) Checking requirements... + ⏳ (1/2) Checking update requirements... ✅ Drive C: has 441 GB free (56% of 1TB used) ✅ Swap space has 1GB free (2% of 1GB used) ✅ No pending system reboot @@ -23,7 +23,7 @@ try { $stopWatch = [system.diagnostics.stopwatch]::startNew() if ($IsLinux) { - "⏳ (1/5) Checking requirements..." + "⏳ (1/5) Checking update requirements..." & "$PSScriptRoot/check-smart-devices.ps1" & "$PSScriptRoot/check-drive-space.ps1" / & "$PSScriptRoot/check-swap-space.ps1" @@ -47,14 +47,14 @@ try { Write-Progress -completed " " } else { # Windows: - "⏳ (1/2) Checking requirements..." + "⏳ (1/2) Checking update requirements..." & "$PSScriptRoot/check-smart-devices.ps1" & "$PSScriptRoot/check-drive-space.ps1" C & "$PSScriptRoot/check-swap-space.ps1" & "$PSScriptRoot/check-pending-reboot.ps1" Start-Sleep -seconds 3 "" - "⏳ (2/2) Installing updates from winget and Microsoft Store..." + "⏳ (2/2) Installing updates from winget..." "" & winget upgrade --all --source=winget # & winget upgrade --all --source=msstore # does not work