Skip to content

Instantly share code, notes, and snippets.

@claytantor
Created June 29, 2017 23:10
Show Gist options
  • Save claytantor/efe4f7c981cc462b2968294f8e30d8b5 to your computer and use it in GitHub Desktop.
Save claytantor/efe4f7c981cc462b2968294f8e30d8b5 to your computer and use it in GitHub Desktop.
kill a process on a port windows
#Open command prompt and run the following commands, works in poweshell
netstat -o -n -a | findstr 0.0:3000
# TCP 0.0.0.0:3000 0.0.0.0:0 LISTENING 3116
taskkill /F /PID 3116
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment