programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
try another color:
try another fontsize: 60% 70% 80% 90%
Programming FAQs

How to kill processes from windows command line

We can kill the process by

We can kill the process by using taskkill command by passing either name of the task or Process id

c:/> taskkill /IM firefox.exe

or

c:/> taskkill /PID 435

435 is the process id

to know more about task kill type : C:/> taskkill /?