Any method to getting notified on the Starting or Exiting of a particular process.
-
Hi All, I know the process name. I want to getting notified on the starting/Exiting of that particular process in my program. Is there any method for this other than repeatedly enumerating all the running processes and checking for that particular process. Thanx in advance.
-
Hi All, I know the process name. I want to getting notified on the starting/Exiting of that particular process in my program. Is there any method for this other than repeatedly enumerating all the running processes and checking for that particular process. Thanx in advance.
You need to read Detecting Windows NT/2K process execution[^](An article on how to get notification from the OS when a process starts ).
Of one Essence is the human race thus has Creation put the base One Limb impacted is sufficient For all Others to feel the Mace (Saadi )
-
You need to read Detecting Windows NT/2K process execution[^](An article on how to get notification from the OS when a process starts ).
Of one Essence is the human race thus has Creation put the base One Limb impacted is sufficient For all Others to feel the Mace (Saadi )
Thanks for the reply Hamid. This articles describes about the development of a Processor Monitoring Application by Implementing a Kernel-mode driver, using the kernel mode driver API PsSetCreateProcessNotifyRoutine(). But I can't use this since I have to implement the Process monitoring in my MFC dialog baesd application.