cmd 命令行
理想的情况下,所有的程序都能自描述,
比如 mysql -h,支持哪些命令,每项命令需要哪些参数
命令行工具有几个有关进程的命令,
tasklist
taskkill
http://hi.baidu.com/kktlxd/item/3086d9ae6e66f7a829ce9dd3
taskkill 关闭不了的进程可以尝试以下的方法
2、用 wmic process Where name="进程名称" call terminate 这个不需要知道进程的PID号
示例:
wmic process Where name="iexplore.exe" call terminate 关闭IE浏览器,
3、ntsd -c q -p [pid进程码] [在win7 下无法运行ntsd]
示例:还是举个关闭迅雷的吧,同样先找出迅雷的PID码2724
ntsd -c q -p 2724 是这条指令!