To launch Command Prompt as an administrator, search for "Command Prompt," right-click the result, and select "Run as administrator".
Alternatively, press Windows + R to open the Run box, type cmd, and then press Ctrl + Shift + Enter


https://stackoverflow.com/questions/2643901/how-can-we-stop-a-running-java-process-through-windows-cmd
kills all instances of running java.exe

This process can only be terminated forcefully (with /F option)

taskkill /im java.exe /F


