What Port is that Service using
What Port is that Service using
netstat.exe –a –n –o
- -a: listing of all connections and listening ports
- -n: display address and port numbers in numerical form
- -o: display the owning PID associated with each connection
Then find PID value using tasklist.exe.
Example to find pid for SVhost server running in tasklist.
tasklist /svc /FI "PID eq 4784"
tasklist /SVC /FI "IMAGENAME eq svchost.exe"
Comments
Post a Comment