To kill any particular process use the Taskkill command. /F is used to kill the process forcefully. To kill any process using it’s ID, run this command:
Taskkill /PID 2704 /F
Change the PID number to the corresponding from the tasklist command. Thats it.