Skip to content

Instantly share code, notes, and snippets.

@manishprajapatidev
Created July 6, 2020 07:06
Show Gist options
  • Save manishprajapatidev/db895a14490e78c7cfca6e87702fcadc to your computer and use it in GitHub Desktop.
Save manishprajapatidev/db895a14490e78c7cfca6e87702fcadc to your computer and use it in GitHub Desktop.
kill the process currently using a port on localhost in Windows

Step 1:

netstat -ano | findstr :PORT_NUMBER

Step 2:

taskkill /PID PID /F
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment