怎么查看端口占用情况 并找到启动程序
程序员文章站
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"