views:

319

answers:

1

Hello, I want to deploy a firebird installation, and thus will launch it from my installer using command-line parameters. I read Inno Setup's documentation but still can't get it to work.

I just want to install a "Super server" with no documentation or whatsoever.

Here's what I have so far

Firebird-2.1.2.18118_0_Win32.exe /sp- /silent /SUPPRESSMSGBOXES /nocancel /noicons /components="Super Server binary"

But it won't install the server. If I remove the /components it does install the server but install other developer stuff, which customers don't need.

+1  A: 

read installation_scripted.txt in C:\Program Files\Firebird\Firebird_2_1\doc

/COMPONENTS="comma separated list of component names"

Choose from - ServerComponent\SuperServerComponent, ServerComponent\ClassicServerComponent, ServerComponent, DevAdminComponent and ClientComponent

Overrides the default components settings. Using this command line
parameter causes Setup to automatically select a custom type. A full install requires combining components. For example:

/COMPONENTS="ServerComponent\SuperServerComponent,ServerComponent,DevAdminComponent,ClientComponent"

would be required for a full install.

Hugues Van Landeghem