Subject Silent Install options
Author Muthu Annamalai
I use the below line to install firebird database server along with our application.

Process.Start(installPath + "\Firebird-2.1.1.17910-0_Win32.exe", "/SILENT")

Everything works fine.

What I require is, to change the default password masterkey to something else.

I tried adding a bat file to change password after silent install.

The bat file is as follows

"cd C:\Program Files\Firebird\Firebird_2_1\bin
gsec -user sysdba -password masterkey -modify sysdba -pw securelog"

But it is not working. As the server install is not fully completed yet.

Is there any way to install the server with custom password

Thanks!