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的进程,资源占用
                        
 
                 
                
发表评论 取消回复