Scenario: Which process is using on client machine TCP port 13000
Solution: Open command line in operating system Windows as like Administrator and use netstat commands below:
netstat -ano | findstr 13000
port 13000 is using process ID (PID) 4140, so we will use this value for final query.