From 9a2b794df6d270d5b7bb6ab0d5c4158697549b68 Mon Sep 17 00:00:00 2001 From: Daniel Dybing Date: Mon, 22 Dec 2025 17:38:22 +0100 Subject: [PATCH] fix: resolve syntax error in bulk uninstall loop --- PrintCleaner.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PrintCleaner.ps1 b/PrintCleaner.ps1 index 9a54e39..b791936 100644 --- a/PrintCleaner.ps1 +++ b/PrintCleaner.ps1 @@ -376,7 +376,8 @@ function Invoke-UninstallSoftware { Write-Host " (Press ENTER to continue to next app...)" -ForegroundColor DarkGray [void](Read-Host) } - Write-Progress -Activity "Uninstalling Software" -Completed Write-Host "`nDone processing list." -ForegroundColor Green + Write-Progress -Activity "Uninstalling Software" -Completed + Write-Host "`nDone processing list." -ForegroundColor Green Wait-Key return }