摘要:
例如查找80端口进程:1 查找根据端口查找pid: netstat -ano|findstr "80"显示:TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 36402 根据pid查找进程:tasklist|findstr "3640"显示:httpd.exe 3640 Console 0 5,108 K如果要杀掉当前进程 使用 taskkill -pid 3640 /f@j... 阅读全文
posted @ 2010-09-18 15:30 @joe 阅读(183) 评论(0) 推荐(0) 编辑