It feels like a dumb question to ask, but i cant seem to figure it out. when i run a *.jar file on windows it doesnt apears in the taskmanager processes. how can i terminate it
Find the process id by jps command & and kill them by taskkill command.
jps
taskkill
Note that "-f" is required with taskkill or it may just sent a termination signal not actually terminating it.
-f