Automate Reg Tweak

M

Mike Stannard

Using Notepad i can automate some registry tweaks using, for example,
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session
Manager\MemoryManagement]
"DisablePagingExecutive"=dword:00000001
This works fine when changing a dword value, but what would i write when
changing a string value, for example.
[HKEY_CURRENT_USER\Control Panel\Desktop]
"MenuShowDelay"
I want to change this value to 0
Thanks for any help.
 
M

Martin

Mike Stannard said:
Using Notepad i can automate some registry tweaks using, for example,
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session
Manager\MemoryManagement]
"DisablePagingExecutive"=dword:00000001
This works fine when changing a dword value, but what would i write when
changing a string value, for example.
[HKEY_CURRENT_USER\Control Panel\Desktop]
"MenuShowDelay"
I want to change this value to 0
Thanks for any help.

Here's the MenuShowDelay registry key exported from my registry as a REG
file.

<copy>
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Control Panel\Desktop]
"MenuShowDelay"="125"

</copy>

You'll see it's already tweaked (by TweakUI) and it also gives you the
structure of the REG file to create for your own tweak.

Martin.
 
K

Kelly

Yikes!

--
Happy New Year,
Kelly (MS-MVP)

Troubleshooting Windows XP
http://www.kellys-korner-xp.com


Martin said:
Mike Stannard said:
Using Notepad i can automate some registry tweaks using, for example,
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session
Manager\MemoryManagement]
"DisablePagingExecutive"=dword:00000001
This works fine when changing a dword value, but what would i write when
changing a string value, for example.
[HKEY_CURRENT_USER\Control Panel\Desktop]
"MenuShowDelay"
I want to change this value to 0
Thanks for any help.

Here's the MenuShowDelay registry key exported from my registry as a REG
file.

<copy>
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Control Panel\Desktop]
"MenuShowDelay"="125"

</copy>

You'll see it's already tweaked (by TweakUI) and it also gives you the
structure of the REG file to create for your own tweak.

Martin.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top