By tag: Logger
0
kicks
Writing a simple Windows Process Logger in C#
Here is a quick C# script to log the start and end times of running processes on your machine.
The idea is query the currently running processes every x number of seconds utilizing the Process.GetProcesses function in .NET, while maintaining a book for currently running processes each cycle, then...