How to close Internet Explorer from the Run box?

2

When using the Run application from Windows desktop, what command would one use to close all instances of IE?

I know you can open IE by typing "iexplore.exe" but I need a way to close IE as well. Thanks!

Tyler Bleau

Posted 2015-06-20T21:13:48.367

Reputation: 23

Answers

6

What command would one use to close all instances of IE?

You can use taskkill

taskkill /f /im iexplore.exe

Further reading

  • TASKKILL - End one or more processes (by process id or image name)

DavidPostill

Posted 2015-06-20T21:13:48.367

Reputation: 118 938