We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a36aa6a commit d7e04eaCopy full SHA for d7e04ea
1 file changed
SystemTester.ps1
@@ -1811,10 +1811,11 @@ if ($MyInvocation.InvocationName -ne '.') {
1811
try {
1812
Write-Host "Starting Sysinternals Tester v$script:VERSION..." -ForegroundColor Green
1813
1814
- if (!(Initialize-Environment)) {
1815
- Write-Host "`nSetup required." -ForegroundColor Red
1816
- Read-Host "Press Enter to exit"
1817
- exit 1
+ $envReady = Initialize-Environment
+ if (!$envReady) {
+ Write-Host "`nWARNING: Tools missing - limited functionality" -ForegroundColor Yellow
+ Write-Host "Use menu to download Sysinternals tools" -ForegroundColor Yellow
1818
+ Start-Sleep -Seconds 2
1819
}
1820
1821
if ($AutoRun) {
0 commit comments