From 36083d8eb324fd535ab4e50fde96cc77bb344166 Mon Sep 17 00:00:00 2001
From: Markus Fleschutz <markus.fleschutz@atcsim.de>
Date: Wed, 4 Dec 2024 11:30:18 +0100
Subject: [PATCH] Updated install-updates.ps1

---
 scripts/install-updates.ps1 | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

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