I’ve had the script I wrote to keep a record of certain processes run time running for a while (I’m using it to keep a log of the games I play and when). One thing I noticed though is that there are plenty of processes matching the path I’m interested in (anything with “games” in the file path) that I’m not interested in. Launchers, background tasks, updaters or services for example.
What I need to do is set a list of exclusions and then make sure any process that matches the other criteria isn’t listed in the exclusions. The changes are below;
Continue reading “PowerShell : Record Process Time Script (Updated)”