I'm writing a small tray application that needs to detect the last time a user interacted with their machine to determine if they're idle.

Is there any way to retrieve the time a user last moved their mouse, hit a key or interacted in any way with their machine?

I figure Windows obviously tracks this to determine when to display a screen saver or power down, etc, so I'm assuming there's a Windows API for retrieving this myself?

link|improve this question

feedback

1 Answer

up vote 13 down vote accepted

GetLastInputInfo. Documented at PInvoke.net.

link|improve this answer
Perfect, thank you. – GenericTypeTea Jun 24 '09 at 11:04
+1 for PInvoke.net - I didn't know about that resource until now. – John K Jun 16 '10 at 14:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.