You can use following parameter starting eBiss.Configure.exe:
Parameter | Beschreibung |
/CmdMode | Possible values are New, Update, DeleteDB, ImportOnly. Instead of CmdMode you can write /C |
/DbTyp | DB Type e.g. 1), shortcut: /DT |
/DbConnectionStr | DB Connection string, , shortcut: /DB |
/TemplateDir | The Template folder, shortcut: /T |
/SilentMode | Silent mode, no message box shortcut: /S |
/CryptFile | File name of the key file for the Encryption of sensitive data, shortcut: /CF |
To create a new MS-SQL-Server DB in the background you start:
eBiss.Conifigure.exe /C:New /D:MSSql /DbConnectionStr:„server=.;database=eBiss;uid=sa;pwd=<your pwd>“; /S:True
Create SQLite database with encryption:
eBiss.Configurator.exe /CmdMode:New /DbTyp:sqlite /DbConnectionStr:„Data Source=SQLiteTest.db3;Version=3;“ /CryptFile:„crypt.key“
and in short form:
eBiss.Configurator.exe /C:New /DT:sqlite /DB:„Data Source=SQLiteTest.db3;Version=3;“ /CF:„crypt.key“
Further samples
Create a Maria DB:
eBiss.Configurator.exe /C:New /DT:MariaDB /DB:„server=<host>;database=
eBiss;uid=<user>;pwd=<your DB>;“
Update SQLite DB:
eBiss.Configurator.exe /C:Update /DT:SQLite /DbConnectionStr:„Source=
eBiss.db3;Version=3;“
Import only:
eBiss.Configurator.exe /CmdMode:ImportOnly /SilentMode:True /TemplateDir:E:\import_folder\ /DbTyp:MSSql /DbConnectionStr:„server=.;database=Patrick;Integrated Security=True;“
Import only short commands sample:
eBiss.Configurator.exe /C:ImportOnly /S:True /T:E:\e_tmp\xxx\ /DbTyp:MSSql /DbConnectionStr:„server=.;database=Patrick;Integrated Security=True;“