Skip to content

Instantly share code, notes, and snippets.

@ainsofs
Created April 23, 2023 23:07
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 ainsofs/452c6696821b514a0d9c238eb5d6d24e to your computer and use it in GitHub Desktop.
Save ainsofs/452c6696821b514a0d9c238eb5d6d24e to your computer and use it in GitHub Desktop.
Check which process is using a port and show details
# display all processes running on port 80
netstat -aon | findstr 0.0:80
# diplay the process details
tasklist /FI "PID eq 18748"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment