There is no function in the UI for deleting comments in batch. You could however delete them directly from the DB with a SQL-query.
I have not found a good way to disable comments, but you could try to edit the client_comments.php and comment the line where insertComment are:
Change from:
Code:
insertComment($_POST["commenttype"], $_POST["typeid"], $_POST["fullname"], $_POST["email"], $_POST["comments"]);
To:
Code:
//insertComment($_POST["commenttype"], $_POST["typeid"], $_POST["fullname"], $_POST["email"], $_POST["comments"]);