I have a service which creates a number of child processes. Using c# I need to determine the number of these child processes which are currently running.
For example I have a service running called "TheService". This spawns 5 child processes, all called "process.exe". Is it possible to determine the number of child processes running under the service? Essentially I need to know the number of instances of "process.exe" given only the name of the service/service process name.
I am not sure exactly what you mean by "the name of the service" - would that be process.exe?
If so, the static method Process.GetProcessesByName() should do the trick:
Let me know if I misunderstood your question.
You need to use WMI, the Win32_Process class includes the parent process id. So a WQL query (see System.Management namespace for WMI under .NET) like:
replacing n with the service's process id.
EDIT Sample code (based on code by Arsen Zahray):