Search This Blog

Tuesday, February 15, 2011

KILL NON RESPONDING PROCESSES WITH THE HELP OF NOTEPAD/BATCH FILE

We can easily kill all non responding processes with the help of command prompt.
To do so,the  command u need to execute is


TASKKILL /F /FI "STATUS eq NOT RESPONDING"




To do same with notepad.........


1. Open NOTEPAD


2.Copy the code written below(in red) and paste it in opened notepad document...

TASKKILL /F /FI "STATUS eq NOT RESPONDING"


3.Save the file as nonreponding.bat


WHENEVER U NEED TO CLOSE NON RESPONDING PROCESSES ,JUST DOUBLE CLICK THIS FILE.