How to determine how much time a Windows user is idle?

3.7k Views Asked by At

I have an application running on a Windows 10 machine. I would like to be able to determine if the currently logged in user is idle/away from the PC without having locked the screen. The idea is that since my application is showing sensitive data I would like to have an auto-logout in my application if the user is idle for some time. The idle time should however not be the idle time from my application, but from the whole Windows session. If the user does not use my application but is active with another app (using mouse/keyboard) this should not count as being idle. So I guess my question is: Is there a way to determine if the user is idle and for how long?

1

There are 1 best solutions below

2
On

To determine how long a user has been idle, the system provides the GetLastInputInfo API call. To get notified when a user has been idle for a specified amount of time an application would usually do the following:

  1. Set up a timer with the specified timeout (SetTimer)
  2. When the timer expires calculate the difference between GetTickCount and GetLastInputInfo (dwCurrent - dwLastInput reliably calculates the elapsed time since the last user input, even when GetTickCount wraps around to 0; unsigned integer overflow is well defined in C and C++)
  3. If the difference is smaller than the specified timeout, start over from 1. with the remainder of the timeout
  4. Otherwise the timeout has elapsed without user input, so do whatever your program needs to do after a user has been idle for the specified amount of time