Wiki source code of How-to disable splash screen when using command line interface?
Last modified by Admin on 2024/05/25 21:18
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | |||
| 2 | |||
| 3 | You can disable the AgenPro 3.x splash screen by running it with the following command: | ||
| 4 | |||
| 5 | {{code}} | ||
| 6 | java -Djava.awt.headless=true -jar agenpro3.jar -? | ||
| 7 | |||
| 8 | {{/code}} | ||
| 9 | |||
| 10 | The -? Option will print the command line help. You can replace that option by using any other supported option. | ||
| 11 | |||
| 12 | The Java option "-Djava.awt.headless=true" suppresses the splash screen. | ||
| 13 | |||
| 14 |