欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

怎么查看端口占用情况 并找到启动程序  

程序员文章站 2024-03-13 21:55:40
...
  • 命令:wmic process get name,executablepath,processid,parentprocessid  其中parentprocessid可以查看父进程ID
  • wmic process where name="java.exe"  get /format:value
  • netstat -aon|findstr "8081"