Start process creating multiple instances of conhost.exe

Hi,

You might consider the Kill Process activity to close the conhost.exe.
Reference here for some ideas: Print all processes

You can Get the processes then Kill “conhost.exe” using a ForEach so you kill all of the instances in between tasks.

Alternatively, you can also run your current method through a Do While until the process can not be killed any more or something similar to that.

Regards.