You can just use Powershell to kill processes. As many as you want (if you have permission to do so).
try something like:
ps | where { $_.name -match "regex" } | kill
"regex" needs to be replaced by your name filter as regular expression. Start Powershell as Administrator if you want to have this permission level.