Can I close or kill all running Internet Explorer instances on Windows XP SP3 from the command line?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

C:>taskkill /f /im iexplore.exe

you can make a bat file killie.bat with that line in it. or just run that command above.

link|improve this answer
1  
taskkill /f /t /im iexplore.exe is the one I was looking for. Thank you – Radek Oct 21 '10 at 1:54
Great. Regarding the /t, what child processes are you finding iexplore.exe starts? – barlop Oct 21 '10 at 2:22
2  
any pop-up windows – Radek Oct 21 '10 at 2:44
SUCCESS: The process with PID 3748 child of PID 3672 has been terminated. SUCCESS: The process with PID 2540 child of PID 3672 has been terminated. SUCCESS: The process with PID 3920 child of PID 3672 has been terminated. SUCCESS: The process with PID 3672 child of PID 1496 has been terminated. – Radek Oct 21 '10 at 2:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.