on 2015 Feb 12 8:33 AM
So far we used the following statement to install an EBF in silent mode:
SA16_Windows.1600_2043_EBF /l:1033 /s "/v:/qn"
But the SQLA 16 EBF is not reacting to this and is still displaying dialogs.
Any advice?
Request clarification before answering.
The file SA16_Windows.1600_2043_EBF.exe
is actually a self-extracting EXE which requires its own silencing switch as well as a switch to pass arguments to the EXE it is going to launch.
So the correct command is as follows:
SA16_Windows.1600_2043_EBF.exe /s /a /s /l:1033 "/v: /qn"
where,
- the first /s silences the self-extracting EXE,
- the /a tells the self-extracting EXE that everything that follows is to be passed to the EXE it is going to run (setup.exe in this case),
- the second /s silences setup.exe,
- /l:language_code is the language to run the install in,
- /v: tells setup.exe to pass the remainder of the command line to msiexec.exe
- /qn silences msiexec.exe.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As to your questions:
Confine this page: Silent installs using the SQL Anywhere installer . - Note, it does not explicitly tell that the EBF setup does not directly support the usual flags but does need a separate /s option. The doc page does tell something possible similar:
"The setup.exe in the command above is the one located in the same directory as the SQLANY32.msi and SQLANY64.msi files. The setup.exe in the parent directory of those files does NOT support silent installs."
Within the "/v: ...." option you can include a REGKEY=<yourkeyhere> property to specify license keys - cf. the cited page.
I don't know, however, the mentioned page does tell that this feature does only work on Windows.
How all these features of SQL Anywhere, InstallShield and Msiexec.exe fit together is an exercise for the reader :)...
Silent installs using the SQL Anywhere installer
Terry:
UPDATE: I'm using the developer edition; unfortunately, it seems that it cannot be installed in silent mode. Oh well...
User | Count |
---|---|
68 | |
16 | |
12 | |
7 | |
7 | |
4 | |
4 | |
4 | |
4 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.