1

For an unattended installation, how could I disable the popup in IE8:
When you send information to the internet it might be possible for others to see that information?

This popup blocks my scripts.

I have already tried this, with no avail:

Registry Poke
HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3
Key : 1601 Type :REG_DWORD Value : 0
egbrad
  • 103
  • 3
Doron
  • 21
  • 4
  • 10

1 Answers1

4

When you set it in the HKEY_CURRENT_USER hive, the setting will only apply in the current user's context (eg. Trusted Installer).

Set it for the entire machine, by setting the corresponding key in HKEY_LOCAL_MACHINE:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3]
"1601"=dword:00000000

To force all users to read Internet Security Settings from the HKLM hive, set:

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\windows\CurrentVersion\Internet Settings]
"Security_HKLM_only"=dword:00000001
Mathias R. Jessen
  • 25,161
  • 4
  • 63
  • 95