| View previous topic :: View next topic |
| Author |
Message |
rmenth Newbie
Joined: 02 Nov 2010 Posts: 2
|
Posted: Tue Nov 02, 2010 9:30 pm Post subject: How to edit a "(Default)" registry string |
|
|
This is probably a simple thing, but I haven't been able to figure out how to get VDS to edit the (Default) string inside a registry key. I'm referring to the string value that automatically exists inside any given registry key.
My guess would be to use:
REGISTRY WRITE,LOCAL,Software\Classes\mailto\Shell\Open\Command,(Default),NewValue
but this just creates a second string called (Default) rather than overwriting the existing one.
Can anyone throw me a bone? Thanks! |
|
| Back to top |
|
 |
Aslan Valued Contributor


Joined: 31 May 2001 Posts: 589 Location: Memphis, TN USA
|
Posted: Wed Nov 03, 2010 1:18 am Post subject: |
|
|
To write to the (Default) you just need to leave the "Name" param blank.
| Code: | | REGISTRY WRITE,LOCAL,Software\Classes\mailto\Shell\Open\Command,,NewValue |
|
|
| Back to top |
|
 |
rmenth Newbie
Joined: 02 Nov 2010 Posts: 2
|
Posted: Wed Nov 03, 2010 2:18 pm Post subject: |
|
|
| Ahh, thanks, Aslan. Works like a charm! |
|
| Back to top |
|
 |
|