Tuesday, October 5, 2010

Create Not Responding Programs Killer




While using Microsoft Windows its not unusual for any program / software go Not Responding. Next thing you have to do is to wait for it to respond but the fact is, it never goes responsive again and you have to terminate that program. You have to press Ctrl+Alt+Delete for Windows Task Manager and go to applications or processes and right click > end task that program to terminate it. Sometimes more then just one program can appear not responding at the same time. To save time you can create a batch file using only notepad for killing all the not responding programs at once. Here it is how:
Open notepad and type in the following code.
@echo off
taskkill.exe /f /fi "status eq not responding"
exit
Save it and give it a name something like, terminator.bat
Preferably type "terminator.bat" with quotes to avoid saving it as text file.
There you go.
Now if any program goes unresponsive just double click that file which will search the not responding program and terminate it immediately for you.


No comments:

Post a Comment