Knowing which java.exe process to kill on a windows machine [closed]

Run jps -lv which shows PIDs and command lines of all running Java processes.

Determine PID of the task you want to kill. Then use command:

taskkill /PID <pid>

to kill the misbehaving process.

Leave a Comment