Editing general application settings

Editing general application settings

Root privileges are required to change application settings.

To edit the general application settings:

  1. Save the general application settings to the configuration file using the --get-app-settings command:

    kesl-control [-T] --get-app-settings --file <configuration file name>

  2. Open the created configuration file, edit the necessary application settings, and save the changes.
  3. Import the settings from the configuration file to the application using the --set-app-settings command:

    kesl-control [-T] --set-app-settings --file <configuration file name>

The application will apply the new values of the settings after being restarted.

You can use the created configuration file to import the settings to the application installed on another computer.

The kesl-control --get-app-settings command

The kesl-control --get-app-settings command displays the general application settings. You can also use this command to export the general application settings to a configuration file.

Command syntax

kesl-control [-T] --get-app-settings [--file <configuration file name>]

Arguments and keys

--file <configuration file name> – name of the configuration file where the application settings will be saved.

If you specify the name of a file without specifying its path, the file will be created in the current directory. If a file with the specified name already exists in the specified path, it will be overwritten. If the specified directory cannot be found on the disk, the configuration file will not be created.

Example:

Export the general application settings to a file named kesl_config.ini. Save the created file in the current directory:

kesl-control --get-app-settings --file kesl_config.ini

The kesl-control --set-app-settings command

The kesl-control --set-app-settings command sets the general application settings using the command keys or imports the general application settings from the specified configuration file.

Command syntax

kesl-control [-T] --set-app-settings --file <configuration file name>

kesl-control [-T] --set-app-settings <setting name>=<setting value> <setting name>=<setting value>

Arguments and keys

--file <configuration file name> – name of the configuration file, including the full path to the file; the settings from this file will be imported into the application.

Examples:

Import the general settings from the configuration file named /home/test/kesl_config.ini into the application:

kesl-control --set-app-settings --file /home/test/kesl_config.ini

Set the detail level for the trace log to low:

kesl-control --set-app-settings TraceLevel=NotDetailed

Add a mount point to be excluded from scan scope by tasks that use a file operation interceptor (File Threat Protection and Anti-Cryptor):

kesl-control --set-app-settings ExcludedMountPoint.item_0000="/data"

Page top