PPCGeeks Forums HTC Arrive HTC HD2 HTC Thunderbolt HTC Touch Pro 2 HTC Evo 4G HTC Evo 3D Samsung Galaxy S II Motorola Droid X Apple iPhone Blackberry
Go Back   PPCGeeks > Windows Mobile > WM HTC Devices > HTC Touch Pro
Register Community Search

Notices


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 04-20-2009, 03:59 PM
codearn's Avatar
N00b
Offline
Pocket PC: HTC Touch Pro
Carrier: Sprint
 
Join Date: Nov 2008
Posts: 44
Reputation: 55
codearn is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
email notification changes

hopefully this is an easy question... i am looking for a way to automate turning sound & vibrate notifications for email on and off. does anyone know if there is a way to script that to make it easy? i don't mind a couple button presses, but having to dig into the settings every night is driving me nuts.
Reply With Quote
  #2 (permalink)  
Old 04-20-2009, 04:39 PM
Kris xK's Avatar
Lurker
Offline
Pocket PC: HTC Touch Pro
 
Join Date: Feb 2009
Posts: 10
Reputation: 0
Kris xK is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: email notification changes

Supposedly SPB Phone Suite can do that, but I have never tried it.
Reply With Quote
  #3 (permalink)  
Old 04-20-2009, 05:28 PM
rainfreak's Avatar
Gettin' Freaky With It
Offline
Pocket PC: Samsung Galaxy S5/iPad Air 2
Carrier: Big Red
Location: Toledo, OH
 
Join Date: Jan 2008
Posts: 12,934
Reputation: 9792
rainfreak is a trusted member of the communityrainfreak is a trusted member of the communityrainfreak is a trusted member of the communityrainfreak is a trusted member of the communityrainfreak is a trusted member of the communityrainfreak is a trusted member of the communityrainfreak is a trusted member of the communityrainfreak is a trusted member of the communityrainfreak is a trusted member of the communityrainfreak is a trusted member of the communityrainfreak is a trusted member of the community
Mentioned: 9 Post(s)
Tagged: 0 Thread(s)
Send a message via AIM to rainfreak
Re: email notification changes

spb Phone Suite will do it, but it is not free. You could also look into mortscript, which is free, though it will require you to do more work to get it to do what you want.
__________________
"I remember, way back in the day, this site was hoppin' with members, posts, and some great development."
Reply With Quote
This post has been thanked 1 times.
  #4 (permalink)  
Old 04-21-2009, 11:08 AM
codearn's Avatar
N00b
Offline
Pocket PC: HTC Touch Pro
Carrier: Sprint
Threadstarter
 
Join Date: Nov 2008
Posts: 44
Reputation: 55
codearn is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: email notification changes

mortscript seems to be exactly what's needed. thanks a lot. any idea what registry key controls notifications?
Reply With Quote
  #5 (permalink)  
Old 04-21-2009, 11:13 AM
haus's Avatar
Halfway to VIP Status
Offline
Pocket PC: Evo Shift 4G
Carrier: Sprint
 
Join Date: Jan 2007
Posts: 711
Reputation: 765
haus knows their stuffhaus knows their stuffhaus knows their stuffhaus knows their stuffhaus knows their stuffhaus knows their stuffhaus knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: email notification changes

If nobody knows / replies to you, the way I look for reg changes is to set the notifications to one state, export the registry using Resco Registry, then switch the notifications and export again (to a different filename). Then I transfer the .reg files to the desktop and do a comparison with pspad. You only need to export HKCU and HKLM (saves a lot of time), generally speaking.

Here's a sample mortscript I tried building to switch from normal to silent mode:

Code:
Choice( "Profile","Select Profile","Normal","Silent")
Case(1)
	# NORMAL MODE
    RegWriteString ("HKCU", "ControlPanel\Profiles\","ActiveProfile", "Normal")
    RegWriteString ("HKCU", "ControlPanel\Sounds\RingTone0\","Sound", "\Windows\Rings\Ring-Generic1.wma")
    RegWriteDword ("HKCU", "ControlPanel\SoundCategories\Ring\","InitVol", 2)
    RegWriteDword ("HKCU", "ControlPanel\Volume\","Ringer", 1717986918)
    RegWriteDword ("HKCU", "ControlPanel\Volume\","Volume", 2290649224)
    RegWriteDword ("HKCU", "ControlPanel\Notifications\ShellOverrides\","Mode", 0)

    exit
Case(2)
	# SILENT MODE
    RegWriteString ("HKCU", "ControlPanel\Profiles\","ActiveProfile", "Silent")
    RegWriteString ("HKCU", "ControlPanel\Sounds\RingTone0\","Sound", "*none*")
    RegWriteDword ("HKCU", "ControlPanel\SoundCategories\Ring\","InitVol", 0)
    RegWriteDword ("HKCU", "ControlPanel\Volume\","Ringer", 0)
    RegWriteDword ("HKCU", "ControlPanel\Volume\","Volume", 0)
    RegWriteDword ("HKCU", "ControlPanel\Notifications\ShellOverrides\","Mode", 2)

    exit
Case(0)
    exit
EndChoice
exit
Unfortunately it doesn't work because something about the TP volume applet undoes some of the changes moments after they are made. But it's a start. Once you figure out the registry changes, plug them in the script in place of mine and the mortscript should do what you want.

Last edited by haus; 04-21-2009 at 01:23 PM.
Reply With Quote
  #6 (permalink)  
Old 04-21-2009, 11:23 AM
codearn's Avatar
N00b
Offline
Pocket PC: HTC Touch Pro
Carrier: Sprint
Threadstarter
 
Join Date: Nov 2008
Posts: 44
Reputation: 55
codearn is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: email notification changes

try looking here: http://forum.ppcgeeks.com/showpost.p...43&postcount=4

its a big help
Reply With Quote
  #7 (permalink)  
Old 04-21-2009, 01:22 PM
haus's Avatar
Halfway to VIP Status
Offline
Pocket PC: Evo Shift 4G
Carrier: Sprint
 
Join Date: Jan 2007
Posts: 711
Reputation: 765
haus knows their stuffhaus knows their stuffhaus knows their stuffhaus knows their stuffhaus knows their stuffhaus knows their stuffhaus knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: email notification changes

Thanks Codearn, but I was actually trying to help *you* by posting a sample mortscript that offers a choice and then makes reg edits based on that choice. I figured you could modify it to meet your needs once you figured out the values you needed to change based on your original post.
Reply With Quote
  #8 (permalink)  
Old 04-21-2009, 01:41 PM
codearn's Avatar
N00b
Offline
Pocket PC: HTC Touch Pro
Carrier: Sprint
Threadstarter
 
Join Date: Nov 2008
Posts: 44
Reputation: 55
codearn is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: email notification changes

actually i did start from it. havent finished yet but i dont see a reason why it shouldnt work. thanks again.
Reply With Quote
  #9 (permalink)  
Old 04-21-2009, 06:56 PM
apinkel's Avatar
PPCGeeks Regular
Offline
Pocket PC: Sprint HTC Touch Pro
Carrier: Sprint
 
Join Date: Dec 2008
Posts: 181
Reputation: 125
apinkel is keeping up the good workapinkel is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: email notification changes

If you are interested I've got a mortscript scheduler that you can use to run mortscripts on a schedule you specify.
Reply With Quote
  #10 (permalink)  
Old 04-21-2009, 10:46 PM
codearn's Avatar
N00b
Offline
Pocket PC: HTC Touch Pro
Carrier: Sprint
Threadstarter
 
Join Date: Nov 2008
Posts: 44
Reputation: 55
codearn is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: email notification changes

Quote:
Originally Posted by apinkel View Post
If you are interested I've got a mortscript scheduler that you can use to run mortscripts on a schedule you specify.
that would be great. i have a script that runs great. scheduling it would be perfect.
Reply With Quote
Reply

  PPCGeeks > Windows Mobile > WM HTC Devices > HTC Touch Pro


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 11:32 AM.


Powered by vBulletin® ©2000 - 2024, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0
©2012 - PPCGeeks.com