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

If you can't run a GUI application like ProcessExplorer and you're looking for the "Command Line" arguments of the processes then you can use "wmic" via the command line. For example:

wmic PROCESS get Processid,Caption,Commandline

If you want to look for a specific process you can do this:

wmic PROCESS where "name like '%java%'" get Processid,Caption,Commandline

The output from this will show you all of the command line arguments of processes like "java."


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.


Download Sysinternal's Process Explorer. It's a task manager much more powerfull than Windows's own manager.

One of it's features is that you can see all the resources that each process is using (like registry keys, hard disk directories, named pipes, etc). So, browsing the resources that each java.exe process holds might help you determine wich one you want to kill. I usually find out by looking for the one that's using a certain log file directory.

Tags:

Windows

Java