Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run application after successful install

Tags:

inno-setup

How to make check box that allow user to run application after installation?

like image 657
Ata Avatar asked Sep 22 '10 07:09

Ata


2 Answers

There you go:


under [Run]:

Filename: {app}\{cm:AppName}.exe; Description: {cm:LaunchProgram,{cm:AppName}}; Flags: nowait postinstall skipifsilent 

under [CustomMessages]:

AppName=mySoftwaresNiceName LaunchProgram=Start mySoftware after finishing installation 
like image 87
Akku Avatar answered Sep 18 '22 22:09

Akku


Check the postinstall flag in the [Run] section, see the documentation at https://jrsoftware.org/ishelp/topic_runsection.htm#postinstall

like image 42
Otherside Avatar answered Sep 21 '22 22:09

Otherside