Hi deeeeeeeeeer.....
i m new one to this forum
i have found it good 4 installshield probs(m i right?)
i have a prob toooooo
i want to run .exe file + redmefile(.txt) after the installation
i m making the build by using
--- Installscript MSI Project
--- Using BlueTc Skin
Plz help me bcoz when i see my bosss she loooks like DeathAngel
Tc UrSweetSelf
This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.

Run .exe file automaticaly after installation
Started by
Himad Chauhdary
, Dec 22 2005 08:42
2 replies to this topic
Posted 18 January 2006 - 16:26
Hi,
YOu can use the SdFinish Dialog, to ask the user if he or she wants to execute your program and/or read your readme file.
Use the LaunchApp(...) function to load your executable file.
YOu can use the SdFinish Dialog, to ask the user if he or she wants to execute your program and/or read your readme file.
Use the LaunchApp(...) function to load your executable file.
Posted 18 January 2006 - 16:31
Here is an exemple,
You can insert these lines in the OnFirstUIAfter event of the Installscript
SdFinishEx(szTitle, szMsg1, szMsg2, szOption1, szOption2, bOpt1, bOpt2);
if (bOpt1) then
if (LaunchApp(INSTALLDIR ^ "mySoft.exe","") < 0) then
// problem lauching exe
endif;
endif;
You can insert these lines in the OnFirstUIAfter event of the Installscript
SdFinishEx(szTitle, szMsg1, szMsg2, szOption1, szOption2, bOpt1, bOpt2);
if (bOpt1) then
if (LaunchApp(INSTALLDIR ^ "mySoft.exe","") < 0) then
// problem lauching exe
endif;
endif;