How to add multiple .exe's in Deployment script

Is it possible to add multiple .exe names in below line of command from Deployment script.

Show-InstallationWelcome -CloseApps -AllowDefer -DeferTimes 3 "POWERPNT.EXE" "Outlook.exe"

I want to add multiple .exe names instead of process name.

You can add multiple process names to the Show-Installation command separated by commas eg.

Show-InstallationWelcome -CloseApps 'powerpnt,outlook' -AllowDefer -DeferTimes 3

I don’t believe that you can specify .exe in the Show-InstallationWelcome function. Note that the process name can sometimes be different from the name of the .exe file (its rare but it does happen).