vote up 4 vote down star
4

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

flag

78% accept rate

4 Answers

vote up 2 vote down check

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|flag
+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 at 4:55
vote up 1 vote down

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

link|flag
vote up 2 vote down

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|flag
I think it would be cool if SO's wmd editor supported Latex for equations – Simucal Feb 3 at 5:02
I looked it up, and it was requested but denied already. – Simucal Feb 3 at 5:50
vote up 4 vote down

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 @sambo99
(2) Use performance counters to determine CPU usage (or disk, ...)
* again, several good references are posted in this thread by @ChrisW and @1800 INFORMATION
(3) Execute your code on a thread with IDLE priority
* by definition, Win32 will only execute your code when the machine is idle

link|flag
Great answer! +1 – mafutrct Feb 3 at 7:42

Your Answer

Get an OpenID
or

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