01-21-2008, 02:57 PM
Is possible auto power on the computer if the system was stopped in hibernation?
Auto power on
|
01-21-2008, 02:57 PM
Is possible auto power on the computer if the system was stopped in hibernation?
01-21-2008, 09:17 PM
Use a scheduled task, or
Function WakeUpAfter ;\
01-21-2008, 09:22 PM
Wait, is this going to turn on your computer automatically or just your monitor? Or am I just misunderstanding what this function does? I didn't think it was possible to turn your computer on with QM. hock:
Taking on Quick Macros one day at a time
01-21-2008, 09:24 PM
Turns on computer and optionally monitor. The computer must not be shut down but only in sleep or hibernate state.
01-21-2008, 09:27 PM
Oh okay, after reading more inside the function thats what I figured. So this wouldn't work if my computer was actually shut off, would it? Example: Have a macro scheduled to turn on my computer every morning at 7:30 AM.
Taking on Quick Macros one day at a time
01-21-2008, 09:31 PM
Hibernate it instead of shutting down. I normally never shut down computer if I don't have to.
Don't know how reliable is this function. Maybe better to use a scheduled task with 'wake up' checked.
01-21-2008, 09:32 PM
What is the difference? I shut down my computer to cut back on power usage. Will hibernation have the same effect for the most part?
Taking on Quick Macros one day at a time
01-21-2008, 09:35 PM
When hibernated (or hybrid sleep on Vista), you can turn off power completely. The difference is that when you turn on, all running programs are restored like before hibernation.
01-21-2008, 09:36 PM
Oh okay, thanks for the explaination. So I could program my computer to go into hibernation mode at night then auto turn on at 7:30 in the morning?
Taking on Quick Macros one day at a time
03-14-2009, 09:44 PM
How would it work to schedule a task to turn on a computer at a specific time and have it stay on; instead of like the example above where it turns on after a specific duration of time and then shuts off again after 2min or when the task it finished.
Basically I want my computer to hibernate during non-business hours and then turn on during business hours. I.E... Scheduled task a computer to hibernate at 6:00pm Scheduled task a computer to wake up at 10:00am Then the computer would stay on from 10:00am-6:00pm I know something like this would work if I scheduled a task at 6:00p I would just prefer to have a Hibernate task and a Wake Up task... Thanks, Jimmy Vig
03-15-2009, 07:49 AM
Better use task scheduler.
function scheduled every day at 6 pm (probably "start when idle" should be checked in task properties): shutdown 4 function scheduled every day at 10 am ("wake..." checked in task properties): wait 0 M The wait for mouse click command does not allow Windows to hibernate again if not using mouse or keyboard for several minutes. Or show message box. ------------------------------ SetWaitableTimer can wait for an absolute time too. If t is positive. Anyway, some calculations needed.
03-19-2009, 08:59 AM
I would like to make a program that triggers a timer to wait x minutes before actually going into hibernation...if a key or mouse are used within the wait period, then the timer would be reset. This way if I am on the computer after hours I don't have to worry about the whole thing going into hibernation while I am in the middle of something. I thought about using a dialog that would wait for cancel to be clicked to avoid going into hibernation, but then I'd always have to remember to hibernate manually when was done.
For example I would schedule a task to run an exe at 8:00pm. If the mouse and keyboard have not been used by 8:10 the computer will go into hibernation. If the mouse gets used at 8:05 then the computer would reset the timer for another 10minutes from the point when the mouse was no longer being used. Could you please give an example of this? Thanks, Jimmy Vig
03-19-2009, 07:29 PM
Function ResumeWhenIdle
;/
03-19-2009, 09:13 PM
Can the reverse be done?
Say do some function until the mouse is used or a button on the keyboard has been pressed.
03-20-2009, 02:44 AM
Thanks! Very nice, works perfectly!
03-20-2009, 06:01 AM
03-20-2009, 03:59 PM
I do not think that could work better!
Thank You |
« Next Oldest | Next Newest »
|