How do I find which application is using up my port? [closed]
How about netstat? http://support.microsoft.com/kb/907980 The command is netstat -anob. (Make sure you run command as admin) I get: C:\Windows\system32>netstat -anob Active Connections Proto Local Address Foreign Address State PID TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 4 Can not obtain ownership information TCP 0.0.0.0:135 0.0.0.0:0 LISTENING 692 RpcSs [svchost.exe] TCP 0.0.0.0:443 0.0.0.0:0 LISTENING 7540 [Skype.exe] TCP 0.0.0.0:445 0.0.0.0:0 … Read more