






















warning: 这篇文章距离上次修改已过2321天,其中的内容可能已经有所变动。
Windows 查找占用端口 12345 的进程:
netstat -ano |findstr 12345
查看进程映像名称为 qbittorrent 的信息:
tasklist |findstr qbittorrent
查看进程 pid 为 3777 的映像名称:
tasklist |findstr 3777
杀掉 pid 为 3777 的进程:
taskkill -f -pid 3777
杀掉进程名(比如 java.exe ):
taskkill -f -t -im java.exe
end.
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。