自從微軟向Vista用戶推送IE 8后,新的問題也來了,在使用IE 8時會發(fā)現(xiàn),任務(wù)管理器中會有多個iexplore.exe進(jìn)程,一個個關(guān)很麻煩,怎么才能一次性關(guān)閉呢?
![](/d/20211018/cec8f99d031f5b451d6fb210401430bd.gif)
其實(shí),在Vista中,有個名為命令可以實(shí)現(xiàn)一次關(guān)閉多個進(jìn)程。
taskkill /F /IM 進(jìn)程名稱.exe> /T
那么,要關(guān)閉多個IE 進(jìn)程,只需輸入:
taskkill /F /IM iexplore.exe
具體操作步驟為:
* 開始菜單 - 程序 - 附件 -命令提示符
* 右鍵 - 以管理員身份運(yùn)行
* 輸入 taskkill /F /IM iexplore.exe并回車
![](/d/20211018/3cf22097d71bc721a9189604dd25aac5.gif)
同時,方便起見,我們還可以為此操作創(chuàng)建快捷方式,雙擊即可生效。
方法也很簡單:
* 右鍵 - 新建 - 快捷方式
![](/d/20211018/a9c57bee1843ab15bad33c1d2456f881.gif)
* 輸入: taskkill.exe /F /IM iexplore.exe /T
![](/d/20211018/f17c828a733dea9fa9b183c0bf8c0af2.gif)
* 選擇圖標(biāo) - 確定
![](/d/20211018/f32137e51063639686e3af19c8376f08.gif)
![](/d/20211018/798f4459b8bf3299b20e7e9406603204.gif)
附部分原文:
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?
....