检查使用相同端口的应用程序

我在hMailServer日志中看到some other application is using the ports 25 and 110 please make sure that they are disabled如何find哪个应用程序正在使用这些端口

 netstat -nao | findstr ":25\> :110\>" 
  • \>表示单词的结尾

从命令提示符键入netstat -anb

这将显示您的机器上打开的所有端口,以及打开它们的PID(进程ID)。

查找端口25和110以及PID。 然后打开任务pipe理器并findPID,并find打开它们的进程名称。