Share via

How to find which port a particular process is listening on?

Anonymous
2017-11-25T18:47:53+00:00

I only want to find out which port following processes are listening on. How would i do that?

Windows for home | Previous Windows versions | Internet and connectivity

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Anonymous
    2017-11-25T20:49:23+00:00

    Use the Task Manager to find the process's PID, 4048 in my case.

    Now use this command to find the ports used by this process, 5992 in my case.

    d:\PortQryUI>netstat -ano |find "4048"

      TCP    192.168.111.200:50455  85.0.189.174:5992      ESTABLISHED     4048

    2 people found this answer helpful.
    0 comments No comments