|
||||
Re: H to set InCall Volume default after softreset?
Quote:
The following controls the 5-Step volume slider volumes: ; Phone icon, this is the one on the left when you click the speaker icon HKEY_CURRENT_USER\ControlPanel\Volume Volume=dword:858,993,459 ; 1st bar of 5 = 0 or silence (if you go down one more to vibrate, it also sets the key "screen":dword=0) ; 5th bar of five: loudest = 4,294,967,295 ; 2nd bar of 5: = 858,993,459 ;Handset icon, this is the one on the right when you click the speaker icon HKEY_CURRENT_USER\ControlPanel\Volume Ringer=dword:858,993,459 ;0 = silence ;microphone HKEY_CURRENT_USER\ControlPanel\Volume Mute= dword:7 This one 7, is loudest, 0=mute ;vibrate? HKEY_CURRENT_USER\ControlPanel\Volume Screen= dword:=65,336 ;0=vibrate ;Mystery... HKEY_CURRENT_USER\ControlPanel\Volume Key=dword:0 ;don't know what this one is... Hope you can understand my chicken scratch! Code:
REGEDIT4 [HKEY_CURRENT_USER\ControlPanel\Volume] "Volume"=dword:FFFFFFFF "Ringer"=dword:33333333 "Screen"=dword:00010000 "Key"=dword:00000000 "Mute"=dword:00000007
__________________
If this post was helpfull, let me know by clicking Thanks!
Last edited by rstoyguy; 05-29-2008 at 09:23 AM. |
|
||||
Re: H to set InCall Volume default after softreset?
Those are already Maxed in registry and not the IN CALL volume.
The "Left" one on speaker Icon is your "PDA" volume the right one is "Ringer". While IN a call there is a third volume control that pops up if you hit the volume slider.' That's the one I want to default to 5 and now defaults to 4 after soft reset. |
|
||||
Re: H to set InCall Volume default after softreset?
I made a phone call. I captured the registry settings with the in call volume set to the 5th notch and then changed the volume to the 2nd notch and captured it again. Here are the differences in the registry:
5th notch in call volume: Code:
REGEDIT4 [HKEY_CURRENT_USER\ControlPanel\PhoneVolume] "DownlinkPhoneVolume"=dword:000000FF "MappedDownVolume"=dword:000000FA [HKEY_CURRENT_USER\ControlPanel\Phone] "Vol"=dword:0000FFFF Code:
REGEDIT4 [HKEY_CURRENT_USER\ControlPanel\PhoneVolume] "DownlinkPhoneVolume"=dword:00000033 "MappedDownVolume"=dword:00000032 [HKEY_CURRENT_USER\ControlPanel\Phone] "Vol"=dword:00003333 And just to be sure, here are the settings for the 4th notch: Code:
REGEDIT4 [HKEY_CURRENT_USER\ControlPanel\PhoneVolume] "DownlinkPhoneVolume"=dword:000000CC "MappedDownVolume"=dword:000000C8 [HKEY_CURRENT_USER\ControlPanel\Phone] "Vol"=dword:0000CCCC Last edited by rstoyguy; 05-29-2008 at 08:20 PM. |
|
||||
Re: H to set InCall Volume default after softreset?
But that doesn't solve anything. What happens if you reboot?
If it changes the registry by pushing the knob what's the point in editing the registry. I can just put the volume up. But something resets it on reboot. Are you proposing a script the runs at boot up? |
|
|
|