Deploymode = Silent, Close App Prompt

I am trying to deploy an application in ‘silent’ mode but allow the prompt to close specified apps to still show. I thought the ShowInstallationWelcome prompt would still show if run through silent mode.
What I am seeing now is the specified application with close automatically without any prompt or countdown; acts exactly how NonInteractive would act.

Any thoughts or ideas?

I was also surprised to see this ‘DeployMode’ missing.

I worked for about 15 minutes on using the internal Get-RunningProcesses working but the process name parser to properly create $processObjects is inside Show-InstallationPrompt so Get-RunningProcesses ends up hard to call.

I might work on it more but for now I just wrote the following and commented the other show-* commands.

<code>        $allProcessesToCheck = @(&quot;iexplore&quot;,&quot;AcroRd32&quot;,&quot;cidaemon&quot;)
        foreach ($thisProcessToCheck in $allProcessesToCheck) {
            if (Get-Process $thisProcessToCheck -ErrorAction SilentlyContinue) {Show-InstallationWelcome -CloseApps &#039;iexplore,AcroRd32,cidaemon&#039; -BlockExecution -AllowDefer -DeferTimes 3}
        }
</code>