Skip to content
⌘ NSIS Forum Archive

How to run an Application after intallation in silent mode

2 posts

JamesKiller#

How to run an Application after intallation in silent mode

Hi,

I have my installer run in silent mode. What I expect is that I will see the our application running after installation in silent mode.

But it doesn't show up in silent mode. Just like in window mode,and I click on finish button then start our App, and our app window shows up.

is it possible in silent mode?


James
ThorMX#
Just do something like this at the end of the installer:

IfSilent 0 +2
Exec "name of program.exe"