1
vote
2answers
599 views
How do you kill a process for a particular user in .NET (C#)?
I work off of a multi-user Windows Server, and the rdpclip bug bites us all daily. We usually just open task manager and kill then restart rdpclip, but that's a pain in the butt. I wrote a powers …
1
vote
How do you kill a process for a particular user in .NET (C#)?
Ok, here's what I ended up doing:
Process[] processlist = Process.GetProcesses();
bool rdpclipFound = false;
foreach (Process theprocess in proce …
