Idle state detection for server

Posted by odinmillion on Super User See other posts from Super User or by odinmillion
Published on 2012-11-22T10:02:11Z Indexed on 2012/11/22 11:05 UTC
Read the original article Hit count: 470

Windows OS has a service that detects idle state. Details: Task Idle Conditions

The computer is considered idle if all the processors and all the disks were idle for more than 90% of the past 15 minutes and if there is no keyboard or mouse input during this period of time. When the Task Scheduler service detects that the computer is idle, the service only waits for user input to mark the end of the idle state.

It is very useful for usual PCs that have keyboard amd mouse. We can use standard task scheduler to start some process like defrag when PC in idle state and stop when PC isn't in idle state.

But what should we use when we using a standalone server without keyboard and mouse? Server sometimes receives commands by TCP/IP and starts CPU and HDD activity. But sometimes CPU and HDD activity at zero level.

I would like to use this periods of time to start defrag or another process. But this started at "idle" state processes should be terminated when another commands will appear. So, standard idle state conditions cant help me because we have not got user input to stop idle state. I need more customizable idle state detector. Automatically started processes shouldn't influence to idle state, but PC should go away from idle state when another process will apperar. What should I use?

Maybe exists some advansed task scheduler? Or I should write some useful utility on C#?

I hope that it is a standard task and all useful utilities already compiled :)

© Super User or respective owner

Related posts about Windows

Related posts about scheduled-tasks