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.