> 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?
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. I'm not sure if this works, but it's worth for a test. -- With regards, Thomas Steinmaurer (^TS^) Firebird Technology Evangelist http://www.upscene.com/ Do you care about the future of Firebird? Join the Firebird Foundation: http://www.firebirdsql.org/en/firebird-foundation/
