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.