silent install of Sql Developer bundle 10.1
rohit.s
Posts: 5
I would like to try an unattended install the SQL Compare tool from the bundle.
I can extract the .msi file from the downloaded .exe.
What are the command line options I need to pass to selectively install individual components and also the EULA consent ?
I can extract the .msi file from the downloaded .exe.
What are the command line options I need to pass to selectively install individual components and also the EULA consent ?
Comments
http://www.red-gate.com/supportcenter/g ... nstall_msi
For the bundle, the .msi for each tool will be created in a seperate directory so you will need to run the msiexec command for each tool that you want to install. For example:
C:\Users\chris.kelly\Downloads>msiexec /I "C:\Users\chris.kelly\Downloads\SQL Compare_10.1.0.102_x86_r201382 10.1.0.102\SQL Compare_10.1.0.102_x86_r201382 10.1.0.102.msi" TRANSFORMS="C:\Users\chris.kelly\Downloads\SQL Compare_10.1.0.102_x86_r201382 10.1.0.102."SQL Compare_10.1.0.102_x86_r201382 10.1.0.102.mst"
How does one specify the following options ?
1) Automatically accepting the License agreement. The document mentions hitting Next.
2) Specifying a custom install folder.
/IAgreeToTheEULA
to automatically accept the License Agreement
you can also use:
RG_LICENSE=xxx-xxx-xxxxxx-xxxx
to specify the serial number to automatically (where x is replaces with your 16 digit serial number).
finally you can use:
/q
and notGUI will appear at all.
Unfortunately, I am not aware of a method for specifying an alternative installation folder.
Is there any way to pass the components you need to the installer and avoid this interaction ?
msiexec /I "C:\temp\redgate-1.8.2.238.msi" TRANSFORMS="C:\temp\redgate-1.8.2.238.mst" INSTALLDIR="e:\apps\prod\SQLCompare10"