CMD Kill Process by PID
## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
PBlaster
## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
taskkill /PID 1234
taskkill /F /PID pid_number
kill SIGNAL PID
#Example
kill -9 3827
#See more information from : https://www.linux.com/training-tutorials/how-kill-process-command-line/