标签:idea stat str 程序 占用 a* 端口 shel pid
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的进程,资源占用
标签:idea stat str 程序 占用 a* 端口 shel pid
原文地址:https://www.cnblogs.com/shihx/p/13516941.html