Kaspersky Endpoint Security can be uninstalled from the command line in one of the following ways:
/s
and /qn
switches.To uninstall the application in silent mode:
setup_kes.exe /s /x
or
msiexec.exe /x <GUID> /qn
<GUID>
is the unique ID of the application. You can find out the GUID of the application by using the following command:
wmic product where "Name like '%Kaspersky Endpoint Security%'" get Name, IdentifyingNumber
setup_kes.exe /pKLLOGIN=<user name> /pKLPASSWD=<password> /s /x
or
msiexec.exe /x <GUID> KLLOGIN=<user name> KLPASSWD=<password> /qn
You can also use the SAVEQB
parameter to save files scanned by the application and placed in Backup. Backup copies of files are stored in the folder C:\ProgramData\Kaspersky Lab\KES.21.20\QB
. By default, saving files in Backup is disabled (SAVEQB=0
).
Example:
|