I am a beginner in winapi c++ on windows platform, i need to execute 3 exe files,i.e the installation programs, in one single program. i used shellexecute, exec v, system calls but all are exiting the program after the first program installation, please help me to solve this...
part of the code I used
ShellExecute( hwndDlg, "open", "calc.exe", NULL, NULL, SW_SHOWNORMAL );
status = execv(".\\InstallationFiles\\dotnetfx 35 SP1 Full.exe",child_args);
Thanking you in advance :)