Launching program from installer
How can i have the installer launch my program when the installation is finished? Is it also possible to launch other programs when the install finishes (and how)?
5 posts
Use $INSTDIR for DRIVE:\PATH\ if that works with your installation.EXEC DRIVE:\PATH\PROGRAM.EXE
or use my copyrighted HTML Launcher:
Name "EXE DIR Launcher"
OutFile autorun.exe
SilentInstall silent
Icon CD.ico
Section ""
ExecShell open "$EXEDIR\myprogram.exe"
SectionEnd
or to open the CD drive:
Name "EXE DIR Launcher"
OutFile autorun.exe
SilentInstall silent
Icon CD.ico
Section ""
ExecShell open "$EXEDIR\index.html"
SectionEnd
Hope that helps
Name "EXE DIR Launcher"
OutFile autorun.exe
SilentInstall silent
Icon CD.ico
Section ""
ExecShell open "$EXEDIR"
SectionEnd