NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) Old Stuff (Legacy) GB-PVR Support (legacy) v
« Previous 1 … 828 829 830 831 832 … 1231 Next »
Wake functionality popping up dialog box

 
  • 0 Vote(s) - 0 Average
Wake functionality popping up dialog box
slayer
Offline

Junior Member

Posts: 45
Threads: 11
Joined: Apr 2005
#1
2006-03-26, 01:04 PM
Hi

I have a wake.cmd script that runs when the server either powers on or wakes from hibernate.

However, a pop-up box saying "Wake detected, executing wake.cmd" dialog pops up, and prevents full execution of the script (essentially restarting GBPVR). When I click OK, it goes away and the script can carry on as normal, restarting GBPVR successfully

How do I prevent this dialog box from popping up?

cheers,
Slay
-Slay
Config: VIA M10K Nehemiah, 512Mb, 80Gb 2.5" disk, PVR-350 (used for remote control only!), Plextor PX-M402U in Divx capture mode, Travla C137 case 120W PSU, Red-eye remote, C&W cable (old Telewest).
pieter
Offline

Junior Member

Posts: 34
Threads: 7
Joined: Oct 2005
#2
2006-03-27, 06:30 PM
Which commands are in your wake.cmd?
Maybe you can try: start <command>
[COLOR="Navy"][SIZE="1"]Year 1: Mini-ITX, 5 litre case, power < 50 Watt. VIA EPIA 13000 SP, Hauppauge PVR-150, ParaLED, display Matrix Orbital LK204-25 with LCDC.
[/SIZE][/COLOR]
[COLOR="Navy"][SIZE="1"]Year 2: Sempron 2800+, nVidia 6200, 1 GB mem, disks 80 GB + 250 GB, Hauppauge PVR-150, ParaLED.
[/SIZE][/COLOR]
slayer
Offline

Junior Member

Posts: 45
Threads: 11
Joined: Apr 2005
#3
2006-03-29, 04:48 PM
Hi

Its not so much whats in the wake.cmd, its GBPVR's response to the wake event - it just pops up an unnecessary dialog box on the screen saying it has detected the wake event. I want to know if there is a switch to disable that.

cheers
Slay
-Slay
Config: VIA M10K Nehemiah, 512Mb, 80Gb 2.5" disk, PVR-350 (used for remote control only!), Plextor PX-M402U in Divx capture mode, Travla C137 case 120W PSU, Red-eye remote, C&W cable (old Telewest).
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,810
Threads: 769
Joined: Nov 2003
#4
2006-03-29, 06:12 PM
Can post a screenshot of the message? I cant find the code that is generating that exact message.
slayer
Offline

Junior Member

Posts: 45
Threads: 11
Joined: Apr 2005
#5
2006-03-29, 06:35 PM
sub

Will do when I get home, cant access either via terminal services or SSH (to tunnel) from work...

web server bit works a treat tho' :-) - was just showing it to some Media Centre people here at Reuters, they especially loved it when I downloaded the AVI to my work laptop, then stuck in into my SD card to play on the commute home, using my Treo running TCPMP. :p

I am a heretic though Sub - I am still using the M10000 mobo, but with a Plextor M-402U (gives OK DIVX), though still using the WinTV card for remote control functions! lol.
-Slay
Config: VIA M10K Nehemiah, 512Mb, 80Gb 2.5" disk, PVR-350 (used for remote control only!), Plextor PX-M402U in Divx capture mode, Travla C137 case 120W PSU, Red-eye remote, C&W cable (old Telewest).
slayer
Offline

Junior Member

Posts: 45
Threads: 11
Joined: Apr 2005
#6
2006-03-30, 09:13 PM
sub

Here is the screenshot of the message (attached). It occurs sometimes in the background, which is OK, but also sometimes in the foreground, which means the keyboard wont work unless I bring gbpvr into focus (not easy when using X-card output).

cheers for any info.
-Slay
Config: VIA M10K Nehemiah, 512Mb, 80Gb 2.5" disk, PVR-350 (used for remote control only!), Plextor PX-M402U in Divx capture mode, Travla C137 case 120W PSU, Red-eye remote, C&W cable (old Telewest).
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,810
Threads: 769
Joined: Nov 2003
#7
2006-03-30, 09:20 PM
How are you running GBPVRWake? If you run it with a command line parameter, then it goes into debug mode, which will show this message. If its not in debug mode, then you dont get the message.
slayer
Offline

Junior Member

Posts: 45
Threads: 11
Joined: Apr 2005
#8
2006-03-30, 09:28 PM
sub

I run wake.cmd as part of a scheduled task. Maybe this is a mistake? Does GBPVR run it by itself?

my wake.cmd (pretty crude):
Code:
rem echo off
set logfile=c:\logs\wake.log

echo %date% %time% Wake from hibernation > %logfile%

echo %date% %time% Stopping GB-PVR Recording Service... >> %logfile%
net stop "GB-PVR Recording Service" >> %logfile%
if %ERRORLEVEL% EQU 0 echo Last Command Successful >> %logfile%
if %ERRORLEVEL% GTR 0 echo Last Command Not successful >> %logfile%

echo %date% %time% Starting GB-PVR Recording Service... >> %logfile%
net start "GB-PVR Recording Service" >> %logfile%
if %ERRORLEVEL% EQU 0 echo Last Command Successful >> %logfile%
if %ERRORLEVEL% GTR 0 echo Last Command Not successful >> %logfile%

echo %date% %time% Executing Setcursor.exe >> %logfile%
"C:\Program Files\utils\setcursor.exe"
if %ERRORLEVEL% EQU 0 echo Last Command Successful >> %logfile%
if %ERRORLEVEL% GTR 0 echo Last Command Not successful >> %logfile%

echo %date% %time% Attempting to stop gbpvr if running >> %logfile%
"C:\Program Files\process_util\process.exe" -q gbpvr.exe
if %ERRORLEVEL% EQU 0 echo Last Command Successful >> %logfile%
if %ERRORLEVEL% GTR 0 echo Last Command Not successful >> %logfile%

echo %date% %time% Attempting to start GBPVR >> %logfile%
start c:\progra~1\devnz\gbpvr\gbpvr.exe -topmost
"C:\Program Files\process_util\process.exe" -p gbpvr.exe abovenormal
if %ERRORLEVEL% EQU 0 echo Last Command Successful >> %logfile%
if %ERRORLEVEL% GTR 0 echo Last Command Not successful >> %logfile%

my screen shots of scheduled task attached.

cheers,
-Slay
Config: VIA M10K Nehemiah, 512Mb, 80Gb 2.5" disk, PVR-350 (used for remote control only!), Plextor PX-M402U in Divx capture mode, Travla C137 case 120W PSU, Red-eye remote, C&W cable (old Telewest).
slayer
Offline

Junior Member

Posts: 45
Threads: 11
Joined: Apr 2005
#9
2006-03-30, 09:30 PM
yes I know my errorlevel logic is crap, but this works, so i havent gotten round to tidying it up.

PS. the wake popup window prevents this script running
-Slay
Config: VIA M10K Nehemiah, 512Mb, 80Gb 2.5" disk, PVR-350 (used for remote control only!), Plextor PX-M402U in Divx capture mode, Travla C137 case 120W PSU, Red-eye remote, C&W cable (old Telewest).
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,810
Threads: 769
Joined: Nov 2003
#10
2006-03-30, 09:32 PM
What is actually running GBPVRWake.exe on your system?
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): 1 2 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  GBPVR will not wake up XP computer from sleep keith_leitch 8 4,983 2011-10-10, 08:26 PM
Last Post: keith_leitch
  Zero byte recordings on wake up to record bcchgeneral 3 2,104 2010-07-16, 07:20 AM
Last Post: bcchgeneral
  Wake.cmd and fse with Win7 shrek 2 1,661 2010-05-24, 09:31 PM
Last Post: shrek
  lost functionality in PVRX2, help? anon 6 2,351 2010-03-19, 02:20 AM
Last Post: anon
  PC doesn't wake up sometimes aesn5 15 4,564 2010-03-18, 09:52 PM
Last Post: aesn5
  General functionality kamisama 2 1,618 2010-03-05, 03:55 AM
Last Post: johnsonx42
  No wake up after custom hibernation gkovacsp 13 9,489 2010-02-10, 03:31 PM
Last Post: guudj77
  Hiding the cmd window from wake.cmd Stargrove1 7 2,537 2009-12-04, 06:00 AM
Last Post: Stargrove1
  GBPVR not scheduling PC to wake up from Sleep twinfrey 1 1,266 2009-11-29, 02:22 AM
Last Post: sub
  How to get EPG from DVB-S by automatic wake up houndini 4 1,951 2009-11-23, 10:31 PM
Last Post: houndini

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode