how to kill a program by process name using cmd in windows 8? [closed]
You can kill the process and all its children (ie. all processes started by it) using the /t switch: taskkill /f /t /im wwahost.exe See the documentation for taskkill (ss64) and tskill (ss64) system utilities.