需要使用批处理文件检查进程是否正在运行以及正在使用的端口(8086和8085)是否处于监听状态

最佳答案

netstat /o /a | find /i "listening" | find ":8086" >nul 2>nul && (
   echo 8086 is open
) || (
  echo 8086 is Not open
)

关于windows - 如何使用Windows批处理文件检查端口8086是否正在监听,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47010989/

10-13 02:05