Posts

Showing posts from January, 2024

Windows kill port process

  netstat -ano | findstr :8080 (the port number) This should give you the process to kill. You can then run: taskkill /F /PID 12017(or whatever the process ID is)