Saturday 12 May 2012

END PROCESS WITH DOS


Tip#2 : How to kill process using DOS when your TASK MANAGER is disabled?

Hey... Friends,
Its not a big deal to kill a process form task manager , while in case of when you have lost your task manager then how to kill a process so that I'm giving a way to kill any background process running in windows behind the program using DOS utility, so whenever your task manager has been disable don't be depress that how to kill a background process whether your computer is going to hang  just open your DOS prompt and type some of the few commend to kill a process.

So, here today, I'm giving a way to kill a process running in your task manager or computer windows.
Just follow the simple steps:
1. press [win] + [R] key or go Start >>  RUN.
2. write cmd or command,
A DOS Prompt appear on your computer screen.
3.write a command tasklist and press Enter, you will show all the process running in your computer. and whether you want to  arrange these  process you can use this command, tasklist /? 

4. so now use taskkill command to kill a process like this.
      taskkill /im chrome.exe /F
   /im : show the image name and 
   /F : kill a process by force.
Syntax :
TASKKILL [/S system [/U username [/P [password]]]] { [/FI filter] [/PID processid | /IM imagename] } [/F] [/T]
Examples: 
    TASKKILL /F /IM notepad.exe /IM mspaint.exe
    TASKKILL /F /FI "PID ge 1000" /FI "WINDOWTITLE ne untitle*"

No comments:

Post a Comment