ma_golyo wrote:
I'm updating an installer made with Inno Setup.
Current version is installing CS:
/COMPONENTS="ServerComponent,ServerComponent\ClassicServerComponent,DevAdminComponent,ClientComponent"';
I want to change it to SC. What sould I change in the firebird install parameters?
Thomas Steinmaurer answers:
The executable file (fb_inet_server.exe) is the same for both, Classic and SuperClassic. The visual installer offers a checkbox to run SuperClassic, which is according to the inno setup project file implemented as a task called "SuperClassicTask".
So you could try to add the following part to your inno setup call:
/TASKS="SuperClassicTask"
or if you are already using /TASKS with other entries, simply add SuperClassicTask to the comma separated list.