F5F Stay Refreshed Software General Software Searching for a method to monitor past actions.

Searching for a method to monitor past actions.

Searching for a method to monitor past actions.

H
Hydroforce33
Senior Member
550
07-01-2016, 06:29 AM
#1
I'm searching for a tool to monitor my computer usage on Windows 10. I need suggestions for an app that shows when I was actively using the machine versus when I wasn't. Essentially, I want something that highlights periods of inactivity and lets me note events like meals or calls.
H
Hydroforce33
07-01-2016, 06:29 AM #1

I'm searching for a tool to monitor my computer usage on Windows 10. I need suggestions for an app that shows when I was actively using the machine versus when I wasn't. Essentially, I want something that highlights periods of inactivity and lets me note events like meals or calls.

T
Treemily
Member
58
07-12-2016, 03:31 AM
#2
I'm not sure if Focus Assist offers that feature. I believe it's not the exact tool you're referring to, but definitely a useful starting point because it comes built into Windows.
T
Treemily
07-12-2016, 03:31 AM #2

I'm not sure if Focus Assist offers that feature. I believe it's not the exact tool you're referring to, but definitely a useful starting point because it comes built into Windows.

M
MyPreZBro
Member
131
07-19-2016, 03:41 PM
#3
The goal is to recognize or detect certain "flags" that show whether the computer is being used or not. That means it might enter sleep mode or have its screen locked manually. There might be several indicators. One method could involve using PowerShell with Windows Event Viewer logs to extract this information.

For reference, you can find more details here: https://www.techtarget.com/searchwindows...-event-log
Powershell allows easy exporting of data into spreadsheets or databases, where users can add notes about events. However, creating such a script may require effort.

Examples include logs showing the computer went to sleep at a certain time and was awakened later, with annotations like "Went to lunch." These entries often rely on time sheets or activity tracking used by legal firms, employers, etc., where billing is handled in small increments of time.

Human input remains crucial since these logs depend heavily on users accurately recording dates, times, and activities. Capturing computer behavior at any moment is feasible, but it can be complex depending on the level of detail needed. PowerShell or Python could be suitable options.

The simplest solution might be to monitor when the computer is asleep or inactive. Other possibilities involve checking active tasks or processes.

This task could be a DIY project or it may require IT support or programming resources.
M
MyPreZBro
07-19-2016, 03:41 PM #3

The goal is to recognize or detect certain "flags" that show whether the computer is being used or not. That means it might enter sleep mode or have its screen locked manually. There might be several indicators. One method could involve using PowerShell with Windows Event Viewer logs to extract this information.

For reference, you can find more details here: https://www.techtarget.com/searchwindows...-event-log
Powershell allows easy exporting of data into spreadsheets or databases, where users can add notes about events. However, creating such a script may require effort.

Examples include logs showing the computer went to sleep at a certain time and was awakened later, with annotations like "Went to lunch." These entries often rely on time sheets or activity tracking used by legal firms, employers, etc., where billing is handled in small increments of time.

Human input remains crucial since these logs depend heavily on users accurately recording dates, times, and activities. Capturing computer behavior at any moment is feasible, but it can be complex depending on the level of detail needed. PowerShell or Python could be suitable options.

The simplest solution might be to monitor when the computer is asleep or inactive. Other possibilities involve checking active tasks or processes.

This task could be a DIY project or it may require IT support or programming resources.