Skip to content
⌘ NSIS Forum Archive

Run Program

2 posts

KingOfHeart#

Run Program

In my Installer you can Installer two different programs (optional choice).

Well after it's installed I would like it to show a button(s) to run each of the programs that installed.
Is this possible and how?
n_baua#
Hi KingOfHeart,

Make a custom page and a custom function which will allow user to select the options to execute your application(s)

or incase you just want to execute the program without user having a choice to run it.

Exec '"$INSTDIR\someprogram.exe"'
Exec '"$INSTDIR\someprogram.exe" some parameters'