Innosetup adding multiple exe files and executing within the main setup -


i know how add additional setup exe , execute additional exe main exe using innosetup.

kindly me trying last 3 days new in using innosetup.

thank you.

the simplest way call additional exe in [run] section. exe files should added main setup in [files] section. can either copy them temp folder installation time or copy them app folder (if needed).

[files] source: "d:\adds\*"; destdir: "{tmp}";  flags: nocompression createallsubdirs recursesubdirs deleteafterinstall //contains directx in directx folder, vc redist 2010 x86 , vc redist 2010 x64   [run] filename: "{tmp}\directx\dxsetup.exe"; parameters: "/silent";  flags: waituntilterminated skipifdoesntexist;  statusmsg: "microsoft directx installation. please wait..." filename: "{tmp}\vcredist_x86_2010.exe"; parameters: "/q";  flags: waituntilterminated skipifdoesntexist;  statusmsg: "microsoft visual c++ 2010 (x86) installation. please wait..." filename: "{tmp}\vcredist_x64_2010.exe"; parameters: "/q";  flags: waituntilterminated skipifdoesntexist;  statusmsg: "microsoft visual c++ 2010 (x64) installation. please wait..."; check: iswin64 

Comments

Popular posts from this blog

.htaccess - First slash is removed after domain when entering a webpage in the browser -

Automatically create pages in phpfox -

c# - Farseer ContactListener is not working -