Removing objects from Storage

To remove an object from Storage, execute the following command:

kesl-control -B --mass-remove --query "ObjectId == '<object ID>'"

Example:

To remove the object whose ID=15:

kesl-control -B --mass-remove --query "ObjectId == '15'"

To remove several objects from Storage, execute the following command:

kesl-control -B --mass-remove --query "<field><comparison operator> '<value>' [and <field> <comparison operator>'<value>' *]"

Example:

To remove objects that contain "test" in their names or paths:

kesl-control -B --mass-remove --query "FileName like '%test%'"

To remove all objects from Storage, execute one of the following commands:

kesl-control -B --mass-remove

or

kesl-control -B --mass-remove --query

Page top