Made "Upgrade all applications" not exit after completion (#4575)

* Update Invoke-WPFInstallUpgrade.ps1

* Update Test-WinUtilPackageManager.ps1

* Update Test-WinUtilPackageManager.ps1
This commit is contained in:
Gabi
2026-06-03 21:23:46 +03:00
committed by GitHub
parent ffec7a8a8f
commit 0e061692ba
@@ -16,6 +16,6 @@ function Invoke-WPFInstallUpgrade {
Write-Host "-- You can close this window if desired ---" Write-Host "-- You can close this window if desired ---"
Write-Host "===========================================" Write-Host "==========================================="
Start-Process -FilePath powershell.exe -ArgumentList 'winget upgrade --all --include-unknown --silent --accept-source-agreements --accept-package-agreements' Start-Process -FilePath powershell.exe -ArgumentList '-NoExit winget upgrade --all --include-unknown --silent --accept-source-agreements --accept-package-agreements'
} }
} }