Skip to content

Instantly share code, notes, and snippets.

@jtviegas
Last active January 25, 2018 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jtviegas/aad75d6b6d5b7ddfe0aedf3ef264cede to your computer and use it in GitHub Desktop.
Save jtviegas/aad75d6b6d5b7ddfe0aedf3ef264cede to your computer and use it in GitHub Desktop.
windows tricks
# Find Process ID of process that uses a Port
netstat -aon | findstr 8080
# kill the process
Taskkill /PID 26356 /F
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment