I have an application that uses SetWakeupTime to wakeup at a specific time. After setting this wakeup time, I use
Application.SetSuspendState(PowerState.Suspend, false, false); to sleep the PC. When the PC wakes up (I can see the lights
turining on at the correct time), the monitor is not switched on. If I wakeup because of mousemove or keyboard press
the monitor does switch on.
I can change to Hibernating Application.SetSuspendState(PowerState.Hibernate, false, false); and that works for the screen,
but then I get the ugly bios boot screen and the resume windows screen.
How to use the first option AND get the monitor on after waking up ?