08/20
2020
CMD 命令我平时很少用,所以记一下。
例如要重启 explorer.exe
,可以如下操作:
直接 kill 指定名称的进程:
taskkill /f /im explorer.exe && explorer.exe
查找进程的 pid 再 kill:
> tasklist|findstr explorer.exe
< explorer.exe 212 Console 6 126,744 K
> taskkill /pid 212 /f
> explorer
查找占用了本地 80 端口的程序:
> netstat -ano|findstr 127.0.0.1:80
Windows CMD 查找进程和杀进程
-
Google Chrome 84Windows -
Firefox 80Windows 可以直接 taskkill /f /im explorer.exe && explorer.exe
流氓进程杀了也重生咋办