windows杀死进程

1. cmd命令输入 netstat -ano 找寻运行的进程

2. netstat -ano | findstr “9999” 找到对应端口号为9999的进程id

3. taskkill /pid 6676 /f 强制结束对应pid的进程

你可能感兴趣的:(window杀死进程)