RegToPB is a small tool for converting Registry exports (.reg) into PB source. It uses Droopy Registry functions to write PB source back to Registry, drag'n'drop supported. When compiled 'Include\_Droopy Registry.pbi' is extracted into (.reg) folder, it can be instantly used/compiled.
I have made a lot of tests using UltraCompare Professional 6.0, latest test was comparing complete
"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" without errors.
Suggestions, corrections are welcome.
Download (8k): RegToPB_GUI.rar
XP SP3, PB 4.20
RegToPB - convert Registry (.reg) to PB source
RegToPB - convert Registry (.reg) to PB source
Last edited by eJan on Wed Dec 03, 2008 8:06 pm, edited 3 times in total.
Code: Select all
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer]
; some comment here
"NoWindowsUpdate"=dword:00000001
It can be set in one of two branches, either in HKCU or HKLM.klaver wrote:Does it work for you?Code: Select all
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer] ; some comment here "NoWindowsUpdate"=dword:00000001
For use in HKCU its supposed to be:
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\]
leave the Explorer part off.
For use in HKLM its supposed to be:
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\
Explorer]
where you use the Explorer part in HKLM but not in the HKCU branch.
So your registry entries should look like this:
Code: Select all
For use in HKLM:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer]
; some comment here
"NoWindowsUpdate"=dword:00000001
or if you want to use it in HKCU your registry entry would look like this:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\]
; some comment here
"NoWindowsUpdate"=dword:00000001
Last edited by SFSxOI on Tue Dec 02, 2008 11:42 pm, edited 1 time in total.