To perform a Local Silent install of Progress/OpenEdge, the first step is to create a response file. The InstallShield product embedded in the Progress installer can create a response file by recording all the choices from an interactive installation in a setup.iss file and placing the file in the Windows install directory (the file name and location are both defaults which can be overridden).
Use this syntax to initiate an InstallShield response file:
<drive>:\<path-to-file>\setup.exe -r -f1"<drive>:\<path-to-file>\setup.iss"
Once the response file (setup.iss by default and in the above example) has been created, use the following syntax to run the install silently:
<drive>:\<path-to-file>\setup.exe -s -f1"<drive>:\<path-to-file>\setup.iss"
In the above sample, path-to-file indicates the location of the setup file.
The setup.log file is by default created in the same directory as the setup.iss file.
Note carefully the following points about the -f1 parameter:
- Use an absolute file specification; the results of using a relative file specification are unpredictable.
- All folders specified in the path must exist.
- Do not insert a space between "-f1" and the file specification.
- If the -f1 parameter is not used, or if any mistakes are made in specifying it, the response file will be created as %WINDIR%\setup.iss (which in a default Windows installation is C:\Windows\setup.iss).