I just read the following command:
taskkill /f /im something.exe
I read that /f forces the task to close, but what does /im
/f
/im
See the doc : it will close all running tasks using the executable file something.exe, more or less like linux' killall
something.exe
killall