$ cat "

Quick Tip: Kill Multiple Processes in Windows

"

Linux folks have probably used the kill command from time to time. The Windows equivalent is taskkill.

To kill all instances of the WINWORD process, use the following command.

taskkill /im WINWORD* /f

The im switch specifies the image name, and the f switch tells taskkill to forcefully terminate the processes.

Written by Erik Öjebo 2010-01-29 12:55

    Comments