Sunday 31 January 2016

kill not responding task manager with one click

Most of Microsoft windows users face problem with not responding programs or note responding task manager. If any program is not responding we can easily kill it from Task Manager but sometimes even task manager stop working and we have to restart our pc. Well not anymore just follow this tutorial and you will be able to deal with this kind of situation easily. This trick will kill all apps at once using keyboard shortcut when not even task manager is responding. This comes handy when you have too many applications open and suddenly everything is not responding and you don’t know what to do. You can accomplish this in these 3 easy steps:-

Step 1 :-

right click on desktop, go to new> text documents
type the following command
Echo off
Echo ALL PROCESS MUST DIE!!
taskkill /f /fi “windowtitle ne untitled*”
Pause
now go to save as and save it as anyname.bat (replace anyname with anything you want)

Step 2:-

right click on created bat file and click on create shorcut

Step 3:-

right click on that shortcut and click on properties , under the shortcut section you will see shortcut key,just press whatever key you want to use with ctrl + alt , lets suppose you pressed ‘K‘, your shortcut would be CTRL + ALT + K
Click ok
Now you press that shortcut and every user process will be killed at once freeing you with that “not responding” situation.
Note:-It doesn’t kill notepad.exe and also doesn’t close all the open folders, So if you want that you have to create one more bat file
Echo off
taskkill /f /im notepad.exe
taskkill /f /im explorer.exe
start explorer.exe
pause
above code will kill window explorer and notepad also. If you have some problem in above process please let me know in comments

No comments:

Post a Comment