cmd查找进程,关闭进程

tasklist /v | findstr "idea"   ----  找程序名为idea的进程

tasklist /fi "imagename eq idea*"  ----  找程序名为idea的进程

netstat -anon|findstr ":8080"  --- 找使用8080端口的进程

taskkill /f /fi "imagename eq idea*" ----  强制关闭,程序名为idea的进程

taskkill /f /pid 123456 ----  强制关闭,pid为123456的进程

tasklist /m shell32.dll  --- 查找使用该dll的进程,资源占用

posted @ 2020-08-17 12:39  覃上  阅读(2968)  评论(0编辑  收藏  举报