Even for "Hidden" Instllations in SCCM - The PSAppDeploy still shows

I have an application setup in SCCM and have it set as hidden… Yet, the below screen still appears…

How can I hide this? I know I’m missing something easy but I’m reviewed the document and can’t figure out how to hide it… Thanks

image

Change your command line in SCCM to be
“Deploy-Application.exe” -DeployMode “Non-Interactive”
or
“Deploy-Application.exe” -DeployMode “Silent”

2 Likes

Hi Walter,

you can change the Mode also in the Deploy-Application.ps1.

Param (
[Parameter(Mandatory=$false)]
[ValidateSet(‘Install’,‘Uninstall’)]
[string]$DeploymentType = ‘Install’,
[Parameter(Mandatory=$false)]
[ValidateSet(‘Interactive’,‘Silent’,‘NonInteractive’)]
[string]$DeployMode = ‘Interactive’,
[Parameter(Mandatory=$false)]
[switch]$AllowRebootPassThru = $True,
[Parameter(Mandatory=$false)]
[switch]$TerminalServerMode = $false,
[Parameter(Mandatory=$false)]
[switch]$DisableLogging = $false
)