At the end of my instalation i have to call 3 new setup's
I do it like this
setup1=INSTALLDIR+"setup1.exe";
setup2=INSTALLDIR+"setup2.exe";
setup3=INSTALLDIR+"setup3.exe";
if(Is(FILE_EXISTS,setup1)==TRUE) then
LaunchAppAndWait(setup1,"",WAIT );
endif;
if(Is(FILE_EXISTS,setup2)==TRUE) then
LaunchAppAndWait(setup2,"",WAIT);
endif;
if(Is(FILE_EXISTS,setup3)==TRUE) then
LaunchAppAndWait(setup3,"",WAIT);
endif;
The first two setup files are installScript Msi procjects and thay hang during initialization....this is my problem.
Third is a basic msi project and it works fine!
What to do?
