About Process Class

  • Thread starter Thread starter MS-06S
  • Start date Start date
M

MS-06S

Hi all
i want to monitor user using every which application each date
and i can wrote a service using Process class to do this
(using process class + timer control to check what process is running and
install this service to each user machine)
but this service has a drawback, it can only check the process on timer
interval but not real time

is DotNet framework provide any listener class to do this?
thanks
 
First off, what is the purpose of your windows service? If you want to
monitor each process that a user is using at realtime, instead of every so
many seconds or minutes, then your app would take up almost 100% of your cpu,
leaving little CPU left to the user.
 
Back
Top