I was looking a lot for method to get parent process in .NET, but found only P/Invoke way.
|
feedback
|
|
This code provides a nice interface for finding the Parent process object and takes into account the possibility of multiple processes with the same name: Usage:
Code:
| |||||||||
feedback
|
|
Here is a solution. It uses p/invoke, but seems to work well, 32 or 64 cpu:
| |||||||||||||||||
feedback
|
|
Here's my try at a managed solution. It polls the performance counters for all processes and returns a dictionary of child PID to parent PID. Then you can check the dictionary with your current PID to see your parent, grandparent, etc. It is overkill in how much info it gets, for sure. Feel free to optimize.
In other news, I learned how many performance counters there were on my machine: 13401. Holy cow. | |||
|
feedback
|
Process.GetProcessById()with an ID of a (now) non-existent process ID. But at that point you have the parent's process ID, so you can use that if you need it like I did. – Tyler Collier Mar 25 '11 at 23:39