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 |
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
Further samples
Create a Maria DB:
eBiss.Configurator.exe /C:New /DT:MariaDB /DB:“server=<host>;database=
eBiss;uid=<user>;pwd=<your DB>;”
SQLite DB:
eBiss.Configurator.exe /C:New /DT:SQLite /DbConnectionStr:“Data Source=
eBiss.db3;Version=3;”
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;”