Karthik Malla Asked: 2011-09-23 21:49:55 +0800 CST2011-09-23 21:49:55 +0800 CST 2011-09-23 21:49:55 +0800 CST Check for applications using same port 772 I am getting an error in hMailServer log that some other application is using the ports 25 and 110 please make sure that they are disabled How to find which application is using these port? windows port 2 Answers Voted Paul 2011-09-23T21:58:57+08:002011-09-23T21:58:57+08:00 From a command prompt, type netstat -anb This will show you all the ports open on your machine, along with the PID (process id) that has them open. Look for port 25 and 110 and the PID. Then open Task Manager and find the PID, and you'll find the process name that has them open. Best Answer quanta 2011-09-23T22:06:00+08:002011-09-23T22:06:00+08:00 netstat -nao | findstr ":25\> :110\>" \> means the end of word
From a command prompt, type
netstat -anb
This will show you all the ports open on your machine, along with the PID (process id) that has them open.
Look for port 25 and 110 and the PID. Then open Task Manager and find the PID, and you'll find the process name that has them open.
\>
means the end of word