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的進程,資源占用