I haven't actually tested it, but you can get every processes name and id through expressions, so it shouldn't be a problem to kill a process by name. For example, by using a hash table.
+ Process: For each process
-> HashTable: Insert key Process.GetProcessName with value Process.GetProcessID
You'd then kill the process via the name
-> Process: Kill process HashTable("thenameoftheprocess")