I put my HTPC in standby and when I bring it out of standby with the mouse, keyboard or remote...it's fine. If I do a Wake On Lan with a "magic packet" the computer wakes up but gives me no video. I can access the shares and even connect to XL thru a thin client (PPC) but my touchscreen and tv (both of which are connected to that computer) show no video. If I shake the mouse at this point it comes up but whats the point of WOL if I have to go to the computer and shake the mouse
I have read several threads about this so I know I am not alone. Last night I updated my bios hoping that would help but did not.
I had the idea of using Girder to simulate a mouse movement and have it trigger when it comes out of standby. I found this script:
- Code: Select all
Option Explicit
Dim wmiPowerManagementEvent, oShell
Const cntEventEnteringWakeup = 7
Set wmiPowerManagementEvent = GetObject("winmgmts:").ExecNotificationQuery("Select * from Win32_PowerManagementEvent")
Do
If wmiPowerManagementEvent.NextEvent.EventType = cntEventEnteringWakeup Then
set oShell=createobject("WScript.Shell")
oShell.Run "c:\test.bat"
End If
Loop
which will run the test.bat file, after it comes out of standby, which would run the Girder command. I put the computer in standby and then bring it out with WOL and I get the no video screen, I tap the space bar on the keyboard and it wakes up and triggers the Grider command... a little late don't you think
Anybody seen this, know how to fix it or have another work around.
Thanks!!!