Board logo

标题: [系统相关] 求查询本机httphe端口的bat [打印本页]

作者: 13939839199    时间: 2023-5-16 22:25     标题: 求查询本机httphe端口的bat

怎么查询本机的http  比如本机是 127.0.0.1:10809怎么通过bat查询出来  某个软件占用的端口
作者: Batcher    时间: 2023-5-16 22:57

回复 1# 13939839199
  1. @echo off
  2. REM 假设要查看MySQL数据库服务对应的端口号
  3. REM MySQL服务对应的进程名是mysqld.exe
  4. set "Process=mysqld.exe"
  5. for /f "tokens=2" %%a in ('tasklist ^| findstr /i "mysqld.exe"') do (
  6.     set "PID=%%a"
  7. )
  8. for /f "tokens=3 delims=: " %%a in ('netstat -ano ^| findstr /e /c:"%PID%"') do (
  9.     set "Port=%%a"
  10. )
  11. echo 端口号:%Port%
  12. pause
复制代码





欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2