Is there any Win32 API to know if the computer is idle or not?

link|improve this question

70% accept rate
feedback

4 Answers

up vote 10 down vote accepted

Assuming that by idle you mean the keyboard and mouse are not in use. You could use GetLastInputInfo

In Vista this will not work properly from a service (you need to launch a process as a user). In terminal service environments getting this to work may be a little tricky.

int _tmain(int argc, _TCHAR* argv[])
{
  DWORD previous = 0; 
  while(true)
  {
    LASTINPUTINFO info; 
    info.cbSize = sizeof(info);
    GetLastInputInfo(&info);
    DWORD idleSeconds = (GetTickCount() - info.dwTime)/1000;

    if (idleSeconds < previous) 
    {
      printf("Idle time: %i\n",previous);
    }

    Sleep(1000);
    previous = idleSeconds; 

  }
link|improve this answer
+1, Yep. This is the same method that I've used before. It can be P/Invoked from C# or another .NET language. – Nicholas Piasecki Feb 3 '09 at 4:55
Hey, How can i implement this inside a service ? – Danpe Jun 27 '11 at 14:20
feedback

Unfortunately, the definition of "idle" for a computer is very vague. For example, Win32 screensavers determine that a computer is idle if there is no keyboard or mouse input for N minutes whether or not the CPU has a high load. And there are several other valid measures of what constitutes an "idle" machine. Here are my top three measures and related techniques:

  1. Wait for keyboard/mouse to be idle x N mins
    • a very reasonable implementation has been given here by @Sam Saffron
  2. Use performance counters to determine CPU usage (or disk, ...)
  3. Execute your code on a thread with IDLE priority
    • by definition, Win32 will only execute your code when the machine is idle
link|improve this answer
Great answer! +1 – mafutrct Feb 3 '09 at 7:42
feedback

You can use Performance Counters to read statistics, for example the CPU utilization, disk, network, and other activities.

link|improve this answer
feedback

I found a good article at philosophical geek on how to determine the CPU usage of the current process. The relevant API's are GetProcessTimes and GetSystemTimes. You then use the equation to determine the CPU usage percentage: alt text

link|improve this answer
1  
I think it would be cool if SO's wmd editor supported Latex for equations – Simucal Feb 3 '09 at 5:02
I looked it up, and it was requested but denied already. – Simucal Feb 3 '09 at 5:50
feedback

Your Answer

 
or
required, but never shown

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