-3

I need help writing a small program using C# that monitors the windows system and logs that information into a file. Also it should be able to tell me what Application where being used for example Google Chrome, Internet Explorer.

1 Answers1

-1

You have to be more specific on what exactly you want to achieve. Right now it is kinda vague. Catching on that, I did understand, you want an application to monitor processes running. If i understand correctly it should be some kind of service. For that you need of course three things:

1) Getting processes running. I would not duplicate. The answer is here:

How can I list all processes running in Windows?

2) Saving something to file. Once again, there are plenty of things on such topics on SOF. For example:

Easiest way to read from and write to files

3) A way to put it as a service. Here is the answer:

Windows Service application in c#

Piotr
  • 1,013
  • 9
  • 28
  • Thank you so much for responding. What I was trying to say was I need help writing a C# program that monitors the system in the background and notify me with all the actions that was done once I myself the programmer stop running it. The monitoring task are like Apps that were open or if the registry was tampered with and I also would like to know the time and dates the Apps where opened when I stop the program monitoring – Eric Thompson Oct 20 '19 at 03:14
  • Every piece of what you've described (is needed) is above. But no one will write you the whole program for you. There are portals on which you can order someone (for some money) to write something for you. Here we can advice you how to do it, but nobody will write the whole application for you – Piotr Oct 20 '19 at 14:39