HKEY_CURRENT_USER
\Software
\Microsoft
\Windows
\CurrentVersion
\Internet Settings
named value ProxyEnable [DWORD]
0 = no proxy server
1 = proxy server
===============================================
set shell = createobject("wscript.shell")
key = "HKEY_CURRENT_USER\Software\Microsoft\Windows\" _
& "CurrentVersion\Internet Settings\ProxyEnable"
shell.regwrite key, 0, "REG_DWORD"
--
Michael Harris
MVP Scripting
I'd like to be able to enable/disble the proxy settings for IE based on user
id?? any suggestions?