查找进程:

  方法一: netstat -ano | find /I "xx"     // 注意:此处必须为双引号

  方法二: tasklist | find /I "xx"

 

杀进程:

  taskkill /pid xxx -f  

 

  

相关文章: