Is there any Win32 API to know if the computer is idle or not?
|
|
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.
|
||
|
|
|
You can use Performance Counters to read statistics, for example the CPU utilization, disk, network, and other activities. |
||
|
|
|
|
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:
|
||
|
|
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 |
|||
|

