no_spam_for_me
Ist gelegentlich hier
- Registriert
- 10. September 2012
- Beiträge
- 86
- Reaktionspunkte
- 26
- Punkte
- 18
(Weiß nicht genau in welchen Bereich ich das unterbringen soll und auch ein eigner Thread, weil es evtl. noch andere Navis betrifft)
Hallo,
ich habe hier ein Navi (Apollo Bell 4.3) das, wenn ich nicht über den Geräteschalten ausschalte, nach geschätzter genau 1 Stunde neu startet.
Ob ich nun über:
1. Taskleiste -> Start -> Suspend
2. oder mit der in dem spirit Menu script z.B. vorhanden "PowerOFF.exe" arbeite
3. oder die im "iPhoneToday for Windows" implementierten Funktion (slide Menu)
4. oder mit der in dem "Dotfred's Task Manager" hinterlegten Funktion
arbeite, immer dasselbe Ergebnis...
Leider habe ich mit MortScript keinen Prozess für den durch den Schalter aktivierten "Beende-Bildschirm" (mit Count Down von 9 sec) identifizieren können...
Anbei mal mein Registry-Auszug für [HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power]
Jemand eine Idee?
LG
Hallo,
ich habe hier ein Navi (Apollo Bell 4.3) das, wenn ich nicht über den Geräteschalten ausschalte, nach geschätzter genau 1 Stunde neu startet.
Ob ich nun über:
1. Taskleiste -> Start -> Suspend
2. oder mit der in dem spirit Menu script z.B. vorhanden "PowerOFF.exe" arbeite
3. oder die im "iPhoneToday for Windows" implementierten Funktion (slide Menu)
4. oder mit der in dem "Dotfred's Task Manager" hinterlegten Funktion
arbeite, immer dasselbe Ergebnis...
Leider habe ich mit MortScript keinen Prozess für den durch den Schalter aktivierten "Beende-Bildschirm" (mit Count Down von 9 sec) identifizieren können...
Code:
While( TRUE )
WriteFile( "ActiveProcess.txt", " \ Prozessname = " & ActiveProcess() & " Fenstername = " & ActiveWindow() & "^NL^", 1)
Kill( ActiveProcess() )
Sleep(1000)
EndWhile
Anbei mal mein Registry-Auszug für [HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power]
Code:
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power]
"DisableGwesPowerOff"=dword:00000001
"BattPowerOff"=dword:000000b4
"ExtPowerOff"=dword:00000000
"SystemIdleTimerResetEvent"="PowerManager/SystemIdleTimerReset"
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\State]
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\State\resuming]
@=dword:00000002
"Flags"=dword:00000000
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\State\On]
@=dword:00000000
"Flags"=dword:12010000
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\State\UserIdle]
@=dword:00000001
"Flags"=dword:11000000
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\State\SystemIdle]
@=dword:00000002
"Flags"=dword:00000000
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\State\SystemIdle\{EB91C7C9-8BF6-4a2d-9AB8-69724EED97D1}]
@=dword:00000002
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\State\Suspend]
@=dword:00000003
"Flags"=dword:00200000
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\State\Suspend\{98C5250D-C29A-4985-AE5F-AFE5367E5006}]
@=dword:00000004
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\State\ColdReboot]
@=dword:00000004
"Flags"=dword:00800000
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\State\Reboot]
@=dword:00000004
"Flags"=dword:00800000
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\Interfaces]
"{A32942B7-920C-486b-B0E6-92A702A99B35}"="Generic power-manageable devices"
"{8DD679CE-8AB4-43c8-A14A-EA4963FAA715}"="Power-manageable block devices"
"{98C5250D-C29A-4985-AE5F-AFE5367E5006}"="Power-manageable NDIS miniports"
"{EB91C7C9-8BF6-4a2d-9AB8-69724EED97D1}"="Power-manageable display"
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\ActivityTimers]
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\ActivityTimers\UserActivity]
"TimeoutMs"=dword:00000064
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\ActivityTimers\SystemActivity]
"TimeoutMs"=dword:00000064
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\Timeouts]
"ACUserIdle"=dword:0000001e
"ACSystemIdle"=dword:00000000
"ACSuspend"=dword:00000000
"BattUserIdle"=dword:0000001e
"BattSystemIdle"=dword:00000000
"BattSuspend"=dword:00000000
"ACDeepIdle"=dword:00000000
"BattDeepIdle"=dword:00000000
"BatteryPoll"=dword:00000000
Jemand eine Idee?
LG