Skip to content

Commit d7e04ea

Browse files
authored
Update SystemTester.ps1
1 parent a36aa6a commit d7e04ea

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

SystemTester.ps1

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1811,10 +1811,11 @@ if ($MyInvocation.InvocationName -ne '.') {
18111811
try {
18121812
Write-Host "Starting Sysinternals Tester v$script:VERSION..." -ForegroundColor Green
18131813

1814-
if (!(Initialize-Environment)) {
1815-
Write-Host "`nSetup required." -ForegroundColor Red
1816-
Read-Host "Press Enter to exit"
1817-
exit 1
1814+
$envReady = Initialize-Environment
1815+
if (!$envReady) {
1816+
Write-Host "`nWARNING: Tools missing - limited functionality" -ForegroundColor Yellow
1817+
Write-Host "Use menu to download Sysinternals tools" -ForegroundColor Yellow
1818+
Start-Sleep -Seconds 2
18181819
}
18191820

18201821
if ($AutoRun) {

0 commit comments

Comments
 (0)