window-doc-进程命令

tasklist

查看当前正在运行的进程

1
2
# 查看pid 10416的进程
tasklist |findstr 10416

taskkill

杀死进程

1
2
# 杀死pid 10416的进程
taskkill /pid 10416 /f