## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
taskkill /F /PID [PROCESS ID]
// Kill process by exe name
taskkill /IM "ProcessName.exe" /F
taskkill /PID 1234
command netstat -ano|findstr "PID :<port-number>"
taskkill /pid 43144 /f
netstat -ano | findstr :<yourPortNumber>
taskkill /PID <typeyourPIDhere> /F