Hi I have a simple requirement to kill a process or get a process using the Handle.
I tried getting the process using handle but i don't see any good API that does that.
Alternately I tried getting all active processes by Process.GetProcesses()
looped through each process to see if they match the handle but it throws exception when trying to access some handles. So I guess that's not the best way.
How can i achieve this?
Have you tried
GetProcessesByName()
method