自從微軟向Vista用戶推送IE 8后,新的問題也來了,在使用IE 8時(shí)會(huì)發(fā)現(xiàn),任務(wù)管理器中會(huì)有多個(gè)iexplore.exe進(jìn)程,一個(gè)個(gè)關(guān)很麻煩,怎么才能一次性關(guān)閉呢?

其實(shí),在Vista中,有個(gè)名為命令可以實(shí)現(xiàn)一次關(guān)閉多個(gè)進(jìn)程。
taskkill /F /IM 進(jìn)程名稱.exe> /T
那么,要關(guān)閉多個(gè)IE 進(jìn)程,只需輸入:
taskkill /F /IM iexplore.exe
具體操作步驟為:
* 開始菜單 - 程序 - 附件 -命令提示符
* 右鍵 - 以管理員身份運(yùn)行
* 輸入 taskkill /F /IM iexplore.exe并回車

同時(shí),方便起見,我們還可以為此操作創(chuàng)建快捷方式,雙擊即可生效。
方法也很簡(jiǎn)單:
* 右鍵 - 新建 - 快捷方式

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

* 選擇圖標(biāo) - 確定


附部分原文:
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?
....