|
| View previous topic :: View next topic |
| Author |
Message |
riddler Guest
|
Posted: Mon Dec 17, 2007 9:02 am Post subject: Unexpected Hibernate |
|
|
Hello,
I have made a XP embedded with HORM/EWF.
i enable the use of hibernate and set the timings to
presentation(never going in to hibernate).
i hibernate and resume.
If i don't use the mouse or keyboard, my system hibernates after
maximum 8 minutes.(sleep or powerbutton isn't pressed)
If i use my keyboard or mouse once, my system will stay up and
running.
This problem happens always: EWF enabled or disabled,HORM enabled or
disabled.
Has anyone incountered the same problem?
does anybody have an idea how i can find the source of the hibernate?
Best Regards,
riddler |
|
| Back to top |
|
 |
Google Sponsor

|
Posted: Mon Dec 17, 2007 9:02 am Post subject: Advertisement |
|
|
|
|
| Back to top |
|
 |
KM Guest
|
Posted: Mon Dec 17, 2007 7:08 pm Post subject: Re: Unexpected Hibernate |
|
|
riddler,
Don't have a fix for you but just wanted to mention that I am seeing (easy to repro) the same problem on some hardware running not
only XP but Vista. If I hibernated the image once and than resumed the OS, it gets into a sleep state (hibernates again) after a few
minutes if there was no mouse/keyboard activity since the resume time.
Checked all the obvious places (logs, events, etc.) and found nothing suspicious there, Perhaps having the system connected to
another PC and using KD (kernel debugger) may shed some light on the problem (OS debug build spits out some useful output sometimes)
but the issue is not high priority for me so I won't be spending time on the investigation in near future.
--
=========
Regards,
KM
| Quote: | Hello,
I have made a XP embedded with HORM/EWF.
i enable the use of hibernate and set the timings to
presentation(never going in to hibernate).
i hibernate and resume.
If i don't use the mouse or keyboard, my system hibernates after
maximum 8 minutes.(sleep or powerbutton isn't pressed)
If i use my keyboard or mouse once, my system will stay up and
running.
This problem happens always: EWF enabled or disabled,HORM enabled or
disabled.
Has anyone incountered the same problem?
does anybody have an idea how i can find the source of the hibernate?
Best Regards,
riddler |
|
|
| Back to top |
|
 |
JS Guest
|
Posted: Mon Dec 17, 2007 9:02 pm Post subject: Re: Unexpected Hibernate |
|
|
This is done to avoid accidental resume from hibernates draining the
battery.
(eg: laptop being jostled in laptop bag)
see: http://support.microsoft.com/kb/318355/en-us
Something you might try is using powercfg.exe to adjust
the active power profile to disable hibernation.
(set up some process to run powercfg.exe when the system resumes from
hibernate)
Alternatively, you could try SendKeys or SendInput
And something sure to work is writing your own driver
and generating a keyboard or mouse event.
"KM" <konstmor@nospam_yahoo.com> wrote in message
news:uTZA1AOQIHA.3388@TK2MSFTNGP03.phx.gbl...
| Quote: | riddler,
Don't have a fix for you but just wanted to mention that I am seeing (easy
to repro) the same problem on some hardware running not only XP but Vista.
If I hibernated the image once and than resumed the OS, it gets into a
sleep state (hibernates again) after a few minutes if there was no
mouse/keyboard activity since the resume time.
Checked all the obvious places (logs, events, etc.) and found nothing
suspicious there, Perhaps having the system connected to another PC and
using KD (kernel debugger) may shed some light on the problem (OS debug
build spits out some useful output sometimes) but the issue is not high
priority for me so I won't be spending time on the investigation in near
future.
--
=========
Regards,
KM
Hello,
I have made a XP embedded with HORM/EWF.
i enable the use of hibernate and set the timings to
presentation(never going in to hibernate).
i hibernate and resume.
If i don't use the mouse or keyboard, my system hibernates after
maximum 8 minutes.(sleep or powerbutton isn't pressed)
If i use my keyboard or mouse once, my system will stay up and
running.
This problem happens always: EWF enabled or disabled,HORM enabled or
disabled.
Has anyone incountered the same problem?
does anybody have an idea how i can find the source of the hibernate?
Best Regards,
riddler
|
|
|
| Back to top |
|
 |
KM Guest
|
Posted: Mon Dec 17, 2007 10:43 pm Post subject: Re: Unexpected Hibernate |
|
|
That explains it. Thanks JS!
Yeah, I also ended up with a simple app that sends out a keyboard stroke event on resume. IIRC, only inconvenience was that I had to
hibernate the OS from within my code to control the resume. Powercfg approach would suffer from the same.
--
=========
Regards,
KM
| Quote: | This is done to avoid accidental resume from hibernates draining the battery.
(eg: laptop being jostled in laptop bag)
see: http://support.microsoft.com/kb/318355/en-us
Something you might try is using powercfg.exe to adjust
the active power profile to disable hibernation.
(set up some process to run powercfg.exe when the system resumes from hibernate)
Alternatively, you could try SendKeys or SendInput
And something sure to work is writing your own driver
and generating a keyboard or mouse event.
"KM" <konstmor@nospam_yahoo.com> wrote in message news:uTZA1AOQIHA.3388@TK2MSFTNGP03.phx.gbl...
riddler,
Don't have a fix for you but just wanted to mention that I am seeing (easy to repro) the same problem on some hardware running
not only XP but Vista. If I hibernated the image once and than resumed the OS, it gets into a sleep state (hibernates again)
after a few minutes if there was no mouse/keyboard activity since the resume time.
Checked all the obvious places (logs, events, etc.) and found nothing suspicious there, Perhaps having the system connected to
another PC and using KD (kernel debugger) may shed some light on the problem (OS debug build spits out some useful output
sometimes) but the issue is not high priority for me so I won't be spending time on the investigation in near future.
--
=========
Regards,
KM
Hello,
I have made a XP embedded with HORM/EWF.
i enable the use of hibernate and set the timings to
presentation(never going in to hibernate).
i hibernate and resume.
If i don't use the mouse or keyboard, my system hibernates after
maximum 8 minutes.(sleep or powerbutton isn't pressed)
If i use my keyboard or mouse once, my system will stay up and
running.
This problem happens always: EWF enabled or disabled,HORM enabled or
disabled.
Has anyone incountered the same problem?
does anybody have an idea how i can find the source of the hibernate?
Best Regards,
riddler
|
|
|
| Back to top |
|
 |
riddler Guest
|
Posted: Tue Dec 18, 2007 3:10 pm Post subject: Re: Unexpected Hibernate |
|
|
Thank you JS!
It is indeed a device that works on a battery.
This is the explanation that i was looking for.
The work-arounds i already figured out but the problem was explaining
the hibernate.
also thx KM for your info.
Regards,
riddler
On 17 dec, 22:02, "JS" <nos...@anytime.com> wrote:
| Quote: | This is done to avoid accidental resume from hibernates draining the
battery.
(eg: laptop being jostled in laptop bag)
see:http://support.microsoft.com/kb/318355/en-us
Something you might try is using powercfg.exe to adjust
the active power profile to disable hibernation.
(set up some process to run powercfg.exe when the system resumes from
hibernate)
Alternatively, you could try SendKeys or SendInput
And something sure to work is writing your own driver
and generating a keyboard or mouse event.
"KM" <konstmor@nospam_yahoo.com> wrote in message
news:uTZA1AOQIHA.3388@TK2MSFTNGP03.phx.gbl...
riddler,
Don't have a fix for you but just wanted to mention that I am seeing (easy
to repro) the same problem on some hardware running not only XP but Vista.
If I hibernated the image once and than resumed the OS, it gets into a
sleep state (hibernates again) after a few minutes if there was no
mouse/keyboard activity since the resume time.
Checked all the obvious places (logs, events, etc.) and found nothing
suspicious there, Perhaps having the system connected to another PC and
using KD (kernel debugger) may shed some light on the problem (OS debug
build spits out some useful output sometimes) but the issue is not high
priority for me so I won't be spending time on the investigation in near
future.
--
=========
Regards,
KM
Hello,
I have made a XP embedded with HORM/EWF.
i enable the use of hibernate and set the timings to
presentation(never going in to hibernate).
i hibernate and resume.
If i don't use the mouse or keyboard, my system hibernates after
maximum 8 minutes.(sleep or powerbutton isn't pressed)
If i use my keyboard or mouse once, my system will stay up and
running.
This problem happens always: EWF enabled or disabled,HORM enabled or
disabled.
Has anyone incountered the same problem?
does anybody have an idea how i can find the source of the hibernate?
Best Regards,
riddler- Tekst uit oorspronkelijk bericht niet weergeven -
- Tekst uit oorspronkelijk bericht weergeven - |
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|