Welcome to Discuss Everything Forums...

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed.


 

Tags for this Thread

+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1

    Windows Mobile program activity log

    Every night at midnight, my Tp2 turns on, unless I'm using it, and then it turns off. General advice for this type of thing is to uninstall all programs and reinstall one by one and while I could optimize that (install in groups of 5 until the issue returns, uninstall 2, or whatever), I'd rather not.

    So I'm hoping to find a program (or maybe a part of WinMo) that keeps a log of program activity. I don't need to know what programs are doing, just when they're doing it. Something I can load before I hit the sack, wake up, scroll back to midnight on a log file and see who is mucking about. Then I can either find the right setting to fix in that proggie or find an alternative.

    Any suggestions? I'm thinking maybe a performance monitor with logging ability could help, but it would probably be a pretty odd one.

    Edit: I'm going to try Battlog. But I still welcome suggestions.

  2. #2
    Tyga's Avatar
    Member

    Status
    Offline
    Join Date
    Sep 2009
    Posts
    71
    Downloads
    0
    Uploads
    0

    Windows Mobile program activity log

    On my 6.1 Treo Pro, I utilize Task Manager v3.1 by FdcSoft.

    Within this application, I can go to the notifications tab, and see every scheduled event, which app, last run, etc.

    I do not know if it will run on 6.5 though.

  3. #3

    Windows Mobile program activity log

    That sounds like it could be pretty useful. Does this look like it? Looks like all kinds of interesting stuff in there.

    Thanks for the tip!

  4. #4

    Windows Mobile program activity log

    Dotfred's TaskMgr

    Ooh look at that, it's updated for WM 6.5, in v3.3

    I'll have to give that version a try.

  5. #5
    wfp's Avatar
    Member

    Status
    Offline
    Join Date
    Sep 2009
    Posts
    75
    Downloads
    0
    Uploads
    0

    Windows Mobile program activity log

    Aye, that'd be the one!

  6. #6

    Windows Mobile program activity log

    Gah, 3.3 fails on my device. I bet it's the 320x320 resolution. Oh well. Hope 3.3 works for you.

  7. #7

    Windows Mobile program activity log

    I guess the treo pro was a pretty odd duck. WinMo Pro with that resolution. Still, weird that it would lose a rez in a minor update. Seems like taking it out would be more trouble than not (whoops, just noticed the focus on thumb friendliness... that kinda makes sense). Sorry

    In deference to your plight I shall thoroughly not enjoy using any features added after 3.1. I mean I'll use them, but I pledge misery in the process. Solidarity.

    Edit: wow, that was a much quicker solution than what I wanted to do. G-alarm is at fault. What I didn't mention above is Syd won't shut herself back down (ever) after the wakeup (which is when galarm put it's next queue of alarms into the system), which by googling, others have experienced as well. I love galarm. Need it even. There's a setting to avoid the queuing but doing so can prevent alarms from properly sounding, and that's not an option for me.

    I'm still digging through dotfred's wares. How hard would it be to program a daily 12:05am shutdown command? I see how add an event, sort of. I'm not clear if I can use the listed command line arguments in an added notification or if maybe I should script standby in mortscript and use this schedule it. Any advice?

  8. #8
    K-Jean's Avatar
    Member

    Status
    Offline
    Join Date
    Sep 2009
    Posts
    79
    Downloads
    0
    Uploads
    0

    Windows Mobile program activity log

    Looks like I can do it all in mortscript.

    Code:
    # Turn off your device at 12:05am every morning to counteract a gAlarm bug where device turns on at midnight
    
    and refuses to reenter standby.
    # Thanks to prscott from xda devs for scheduling script example: http://forum.xda-developers.com/showthread.php?p=1925725#post1925725
    # Additional thanks to RoryB and CLHatch for helping me with mortscript time: http://forum.xda-developers.com/showpost.php?p=7414028&postcount=3494
    
    # getting time, date and weekday information
    GetTime(hour,min,sec,day,month,year)
    date = TimeStamp()
    year = (FormatTime("Y"))
    nextyear = (FormatTime("Y") + 1)
    month = (FormatTime("m"))
    nextmonth = (FormatTime("m") + 1)
    day = (FormatTime("d"))
    weekday = (FormatTime( "w" ))
    hour = (FormatTime("H"))
    nexthour = (hour + 1)
    tomorrow = FormatTime("d", TimeStamp()+86400)
    nextday = (FormatTime( "d" ) + 1)
    
    # kill old notification(s) to prevent overlap
    RemoveNotifications( "\Storage Card\gamidnightfix.mscr" )
    
    
    # If on phone - wait 5 minutes to start again
    CallActive = RegRead( "HKLM", "System\State\Phone", "Active Call Count" )
    If (CallActive > 0)
    RunAt( ( TimeStamp() + 60*5 ), "\Storage Card\gamidnightfix.mscr" )
    Call ExitNow
    EndIf
    
    # add tomorrow's 12:05 am notification and poweroff
    	# set new notify
    
    If (tomorrow = 01)
       If (month = 12)
           RunAt( nextyear, 01, 01, 00, 05, "\Storage Card\gamidnightfix.mscr")
       Else
        RunAt( year, nextmonth, 01, 00, 05, "\Storage Card\gamidnightfix.mscr")
       EndIf
       Else
          RunAt( year, month, nextday, 00, 05, "\Storage Card\gamidnightfix.mscr")
    EndIf
    
    # go into standby
    	poweroff
    
    
    # exit routine 
    exit
    Never scripted before, and I borrowed most of the code, so I'm betting this example won't work. I'll update it once I find the right scripting.

  9. #9

    Windows Mobile program activity log

    I believe you could avoid the scripting, and use PocketCron to shut your device down.

    Downloads :: Applied PDA Software for Windows GPS Phones

  10. #10

    Windows Mobile program activity log

    Now he tells me

    But seriously, thanks again. You're a regular one man support desk today/yesterday. I think I'm really close with the mortscript now, but if that doesn't work, I imagine pocketcron will be very helpful. Worst thing is, I've actually looked at the program before. I didn't exactly realize it automated things on the device itself, thought it was more for controlling externals, but I probably still should have thought of it.

 

 

Quick Reply Quick Reply

Click here to log in


In what corner do we have Search box?

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Is there a hacking program for Windows Mobile?
    By Bryn in forum Discuss Windows Mobile
    Replies: 0
    Last Post: 07-11-2011, 08:29 PM
  2. who knows about windows mobile(6.5) program developing ?
    By Be Happy ( in forum Discuss Windows Mobile
    Replies: 0
    Last Post: 10-22-2010, 03:20 AM
  3. Replies: 0
    Last Post: 09-13-2010, 06:42 AM
  4. how do you make a windows mobile 5.0 program?
    By Blake L in forum Discuss Windows Mobile
    Replies: 0
    Last Post: 03-18-2010, 09:04 PM
  5. Windows Mobile 6: Network Log On Screen Keeps Popping Up... Need help?
    By Frederick Penderissues in forum General Cell Phone Discussion
    Replies: 1
    Last Post: 07-02-2009, 05:37 PM

Bookmarks

Posting Permissions

  • You may post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts
  •