if an installation is started with
Show-InstallationWelcome -CloseApps $apps -BlockExecution -ForceCloseAppsCountdown $WaitSeconds -CheckDiskSpace -PersistPrompt -AllowDefer -DeferTimes 3
and the $apps are not running, it will countdown to zero and then wait forever without starting at all.
fix which seems to work: changed line 6274 of AppDeployToolkitMain.ps1 from
$buttonCloseApps.PerformClick()
to
if ($script:runningProcessDescriptions) {
$buttonCloseApps.PerformClick()
} else {
$buttonContinue.PerformClick()
}
if an installation is started with
and the $apps are not running, it will countdown to zero and then wait forever without starting at all.
fix which seems to work: changed line 6274 of AppDeployToolkitMain.ps1 from
to