当前位置: 首页 > 图文教程 > 操作系统 > Windows > 巧用命令一次关闭Vista下多个IE8进程

Windows
Windows Server 2008下高效域管理体验
Windows Server 2008 core管理与配置
Windows PowerShell不一样的系统管理体验
活动目录迁移需要的步骤
给Windows Server 2008设一个简单密码
部署NAP For DHCP 限制非法客户端
Windows Remote Shell(WinRM)使用介绍
微软新品Windows Server 2008 Foundation详情
Windows Server Core 网络的基本配置
Windows Server core的便捷操作和远程管理
Vista和Server08 SP2 RTM-Escrow发放给测试者
slmgr.vbs介绍与VA2.0部署
通过Windows Server终端服务实现远程管理
深入Windows Server 2008的自我监控
群集共享卷文件(CSV)四种模式的区别
Windows Server 2008 R2热添加删除虚拟存诸
部署基于Windows 2008防火墙策略提升域安全
调整服务 解决Windows Server 2008疑难病症
Windows Server 2008 R2的八大优势
Windows Server 2008禁止模块安装提升网络性能

Windows 中的 巧用命令一次关闭Vista下多个IE8进程


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2010-01-16   浏览: 48 ::
收藏到网摘: n/a

自从微软向Vista用户推送IE 8后,新的问题也来了,在使用IE 8时会发现,任务管理器中会有多个iexplore.exe进程,一个个关很麻烦,怎么才能一次性关闭呢?

其实,在Vista中,有个名为命令可以实现一次关闭多个进程。

taskkill /F /IM <进程名称.exe> /T

那么,要关闭多个IE 进程,只需输入:

taskkill /F /IM iexplore.exe

具体操作步骤为:

* 开始菜单 - 程序 - 附件 -命令提示符
* 右键 - 以管理员身份运行
* 输入 taskkill /F /IM iexplore.exe并回车

同时,方便起见,我们还可以为此操作创建快捷方式,双击即可生效。

方法也很简单:

* 右键 - 新建 - 快捷方式


* 输入: taskkill.exe /F /IM iexplore.exe /T


* 选择图标 - 确定

附部分原文:

So you’ve looked in task manager, and there’s a dozen iexplore.exe processes listed! Clicking the End Process button for each will take far too long… so how can we kill them all in one step?
....