How to End Multiple Processes at Once
filed in Tips, Windows Shortcuts, Windows XP on May.13, 2009
If you’ve ever had to close many instances of a program at once and task manager just isn’t cutting it, there’s a simple command you can use to close them all at once, even if they are not responding.
If for example you have multiple instances of Notepad.exe running:
- Open your Start Menu and click “Run” or just hit windows key + R
- Type in “taskkill /im notepad.exe” and hit enter
- If the program is not responding, you may need to type “taskkill /im /f notepad.exe” to forcefully end it.
The great thing about this command aside from allowing you to end many things at once is that it can also be executed from within a batch file or php command to help you automate various tasks on your computer and even allow you to control applications remotely via a web interface.
September 13th, 2009 on 12:19 pm
Thanks! Did the trick for all those rundll32.exe’s taking up CPU speed. Did need the /f by the way.