Jump to content


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.
Photo

Run .exe file automaticaly after installation


2 replies to this topic

Himad Chauhdary

Himad Chauhdary
  • Members
  • 1 posts

Posted 22 December 2005 - 08:42

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




smm

smm
  • Members
  • 10 posts

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.


smm

smm
  • Members
  • 10 posts

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;