I want to install a software which is 3rd party in silent mode.
Currently I am doing the normal installation using LaunchAppAndWait().
I have tried the procedure as given in Installshiled help.
But its not working.
I have created the response file viz Setup.iss using setup -r. Now I am
not able to use this.
svTemp = SUPPORTDIR ^ "CVS\\setup.exe";
LaunchAppAndWait(svTemp, " -s -f1C:\WINDOWS\Setup.iss",
LAAW_OPTION_WAIT);
Here I have given the path of file Setup.iss (response file)
Plz Help!
Thanks
I got the problem: In LaunchAppAndWait, the path should be given with 2
backslashes ie
> LaunchAppAndWait(svTemp, " -s -f1C:\\WINDOWS\\Setup.iss",
> LAAW_OPTION_WAIT);
Thanks