Skip to content

Instantly share code, notes, and snippets.

@median-man
Last active April 7, 2020 12:00
Show Gist options
  • Save median-man/365c0387b6b577aa1aa1b48f1ebb7ea2 to your computer and use it in GitHub Desktop.
Save median-man/365c0387b6b577aa1aa1b48f1ebb7ea2 to your computer and use it in GitHub Desktop.
Helpful Commands

Helpful Windows Commands

Find and Kill Process by Port

  1. Find the process id(s) listening to the port netstat -ano | findstr <port>
  2. Kill process for given process id (pid) taskkill -F -PID <pid> *
  • Replace - with / in CMD terminal.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment