You can output the current values of general application settings to the console or to a configuration file that you can use to edit task settings.
To output the current values of general application settings to the console, execute the following command:
kesl-control --get-app-settings [--json]
where --json
is specified to output the settings in JSON format. If the --json
key is not specified, the settings will be imported in the INI format.
To output the current values of general application settings to a configuration file, execute the following command:
kesl-control --get-app-settings --file <
configuration file path
> [--json]
where:
--file <
configuration file path
>
– path to the configuration file into which general settings of the application will be written. If you specify the name of a file without its path, the file will be created in the current directory. If a file already exists in the specified path, it will be overwritten. If the specified directory does not exist, the configuration file will not be created.--json
is specified to output the settings in JSON format. If the --json
key is not specified, the settings will be imported in the INI format. Example: Display the general application settings to a file named kesl_config.ini. Save the created file in the current directory:
|