iexplore.exe_如何一次杀死所有iexplore.exe进程?

iexplore.exe

iexplore.exe

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?

因此,您已经在任务管理器中查看了,列出了12个iexplore.exe进程! 单击每个进程的“结束进程”按钮将花费太长时间……因此,我们如何一步一步杀死它们?

The answer is to use a quick command line utility that kills all the processes by name, though we’ll make it even easier for you and create a re-usable icon that will kill them in a single step. Of course, this same technique will work for any application that opens a dozen processes… like, for instance, Google Chrome.

答案是使用快速命令行实用程序按名称杀死所有进程,尽管我们会让您更轻松地创建一个可重复使用的图标,从而一步将其杀死。 当然,对于打开十二个进程的任何应用程序(例如Google Chrome浏览器),这种技术都适用。

Task Manager

For those that are wondering why we don’t just close the window, we’re trying to forcibly close them without leaving any stragglers behind, which seems to happen all too often.

对于那些想知道为什么我们不只是关闭窗口的人,我们正试图强行关闭它们,而不会留下任何杂物,这似乎经常发生。

Kill Multiple Processes From the Command Line

从命令行杀死多个进程

The first thing you’ll need to do is open up a command prompt, and then use the taskkill command with the following syntax:

您需要做的第一件事是打开命令提示符,然后使用具有以下语法的taskkill命令:

taskkill /F /IM <processname.exe> /T

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

These parameters will forcibly kill any process matching the name of the executable that you specify. For instance, to kill all iexplore.exe processes, we’d use:

这些参数将强制终止与您指定的可执行文件名称匹配的所有进程。 例如,要杀死所有iexplore.exe进程,我们将使用:

taskkill /F /IM iexplore.exe

taskkill / F / IM iexplore.exe

Command Prompt taskkill

It’s really as simple as that… the processes will immediately be killed.

真的就这么简单……进程将立即被杀死。

Note that if you are using Windows Vista, you can only kill “normal mode” apps from a regular command prompt… if you want to kill an application running as administrator, you would need an administrator mode command prompt.

请注意,如果您使用的是Windows Vista,则只能从常规命令提示符处终止“普通模式”应用程序…如果要终止以管理员身份运行的应用程序,则需要管理员模式命令提示符。

Create an Icon to Force Kill All iexplore.exe Processes

创建一个图标以强制杀死所有iexplore.exe进程

Since we don’t really want to drop to the command prompt every single time we want to recycle Internet Explorer or Chrome, we can setup an icon to do the work for us.

由于我们真的不想每次都想回收Internet Explorer或Chrome时都放到命令提示符下,因此我们可以设置一个图标来为我们完成工作。

Right-click anywhere on the desktop and choose New \ Shortcut:

右键单击桌面上的任意位置,然后选择“新建\快捷方式”:

Create Shortcut

Paste in the following if you want to kill Internet Explorer, otherwise you can use a different executable in place of iexplore.exe.

如果要杀死Internet Explorer,请粘贴以下内容,否则可以使用其他可执行文件代替iexplore.exe。

taskkill.exe /F /IM iexplore.exe /T

taskkill.exe / F / IM iexplore.exe / T

Create Shortcut Location

Give the shortcut a useful name, and then open up the properties. Make sure to choose to Run as Minimized, and then you can select a more fitting icon… I chose the one that looks the most like recycling.

给快捷方式一个有用的名称,然后打开属性。 确保选择“最小化运行”,然后您可以选择一个更合适的图标……我选择了最像回收的图标。

Shortcut Properties

At this point you have an icon that will completely kill all running Internet Explorer windows. You could even have assigned a shortcut key…

此时,您将具有一个图标,它将完全杀死所有正在运行的Internet Explorer窗口。 您甚至可以分配一个快捷键…

Recycle IE Icon

Now that you’ve learned this technique, you can use it for all sorts of other useful things as well.

既然您已经学会了这项技术,那么您也可以将其用于各种其他有用的事情。

翻译自: https://www.howtogeek.com/howto/windows-vista/how-do-i-kill-all-the-iexploreexe-processes-at-once/

iexplore.exe