PDA

View Full Version : making a reg file (W98)



thomas6
11-28-2002, 02:56 AM
I found the following data on this site:

User Key: [HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\
Internet Settings\Zones\3]
System Key: [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\
Internet Settings\Zones\3]
Value Name: 1803
Data Type: REG_DWORD (DWORD Value)
Value Data: (0 = downloads enabled, 3 = downloads disabled)

How can I integrate this values in a .reg file (that works) I want to enable the download on my computer

thanks,
Thomas

azer
11-28-2002, 04:54 AM
like this?

create a textfile and call it something.reg

in it you put this:
REGEDIT4

[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Internet Settings\Zones\3]
"1803"=dword:00000000

to enable or:
REGEDIT4

[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Internet Settings\Zones\3]
"1803"=dword:00000003

to disable

now save the file

or you can extract the string from inside regedit
select the desired string, select file->export registry and press yes and save it to some file

mysterywolf
11-28-2002, 05:38 AM
an easy way is to go that key or better still dword in regedit. highlight it, from the menu export as a reg file to the desktop and close regedit.
rt-click the file you just made and open with notepad and change the 3 to a 0 and save/close.
then double-click it.

thomas6
11-28-2002, 11:00 AM
Thanks !!
Thats what i needed
Thomas