VBScript

show an image when cpu goes below 10%

need some vbscript to make an image show when the cpu goes below 10% for more than 15 seconds. it might include "System.CpuActivity" somwhere in it if that helps. thanks in advance.
1,389 views 3 replies
Reply #1 Top
Offering cash rewards might help. 
Reply #2 Top
Offering cash rewards might help


Reply #3 Top
I suppose you'd need 1 timer to check the cpuactivity every second or so. If the cpuactivity is less than 10% it would start a 2nd timer (a 15 second timer). If the cpuactivity is greater than 10% it would stop the 2nd timer.

The 2nd timer would show the image and then stop itself-- stop the 2nd timer.

That's just my concept of how it could work but I'm not sure system.cpuactivity gives percentages of cpu usage.