Fosco
Wed Oct 18 22:30:30 CDT 2006
"Ed"
> I might be better off looking at some kind
[CUT]
A quick way like I do
Do the changes manually and save the reg settings to a reg file
Look at changes with :
regshot (regshot161e5)
http://www.pcworld.com/downloads/file_description/0,fid,19540,00.asp
http://www.snapfiles.com/get/regshot.html
Save the *reg's in a safe place and call it with a vbs
This is a vbs to cal a *reg with high security settings but wit cookies enabled
(win98se)
set oShell = CreateObject("WScript.Shell")
oShell.run"regedit /s C:\DOCUME~1\REG\IEALTA~1.REG"
' where the IEALTA~1.REG is :
REGEDIT4
[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3]
@=""
"DisplayName"="Internet"
"Description"="L'area contiene tutti i siti Web non compresi in altre aree"
"Icon"="inetcpl.cpl#001313"
"CurrentLevel"=dword:00000000
"MinLevel"=dword:00011000
"RecommendedLevel"=dword:00011000
"Flags"=dword:00000001
"1001"=dword:00000003
"1004"=dword:00000003
"1200"=dword:00000003
"1201"=dword:00000003
"1400"=dword:00000003
"1402"=dword:00000003
"1405"=dword:00000000
"1406"=dword:00000003
"1407"=dword:00000003
"1601"=dword:00000001
"1604"=dword:00000001
"1605"=dword:00000000
"1606"=dword:00000003
"1607"=dword:00000003
"1800"=dword:00000003
"1802"=dword:00000001
"1803"=dword:00000000
"1804"=dword:00000003
"1805"=dword:00000001
"1A00"=dword:00010000
"1A02"=dword:00000000
"1A03"=dword:00000000
"1C00"=hex:00,00,01,00
"1E05"=dword:00010000
"1A04"=dword:00000003
"1206"=dword:00000003
' midle (normal) IE settings
set oShell = CreateObject("WScript.Shell")
oShell.run"regedit /s C:\DOCUME~1\REG\IEMEDI~1.REG"
' reg
REGEDIT4
[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3]
@=""
"DisplayName"="Internet"
"Description"="L'area contiene tutti i siti Web non compresi in altre aree"
"Icon"="inetcpl.cpl#001313"
"CurrentLevel"=dword:00011000
"MinLevel"=dword:00011000
"RecommendedLevel"=dword:00011000
"Flags"=dword:00000001
"1001"=dword:00000001
"1004"=dword:00000003
"1200"=dword:00000000
"1201"=dword:00000003
"1400"=dword:00000000
"1402"=dword:00000000
"1405"=dword:00000000
"1406"=dword:00000003
"1407"=dword:00000000
"1601"=dword:00000001
"1604"=dword:00000000
"1605"=dword:00000000
"1606"=dword:00000000
"1607"=dword:00000000
"1800"=dword:00000001
"1802"=dword:00000000
"1803"=dword:00000000
"1804"=dword:00000001
"1805"=dword:00000001
"1A00"=dword:00020000
"1A02"=dword:00000000
"1A03"=dword:00000000
"1C00"=dword:00010000
"1E05"=dword:00020000
"1A04"=dword:00000003
"1206"=dword:00000003
' you must refresh the registry after each change >> F5 on Desktop
--
Fosco