Re: how to forcfully kill a running process by executable name with a .net application?



Hello,

try

Processs[] x = Process.GetProcessesByName(name);
foreach (Process p in x) p.Kill();

Greetings,
Henning Krause

"Daniel" <softwareengineer98037@xxxxxxxxx> wrote in message
news:%23NwKxUXOGHA.2624@xxxxxxxxxxxxxxxxxxxxxxx
how to forcfully kill a running process by executable name with a .net
application?




.