Proxy Setting

G

Griff

Hi,
We currently have a gpo to configure proxy settings. Is
there a way to have those settings clear when they logoff
the computer. People go home to plug into their high
speed connection and their proxy is still checked.
Thanks
 
G

Griff

Hi,
Just a local proxy setting in internet options, under the
connections tab and the lan settings button.
 
M

MS Newsgroups

You always have the opportunity to run a logoff script when users log off.
This script could set the registry entry:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet
Settings\ProxyEnable REG_DWORD 0

and set it to one when the user loggs on through a logon script

To script this

'****Script start
Dim oShell
Set oShell=createobject("wscript.shell")
oshell.regwrite
"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet
Settings\ProxyEnable",0,"REG_DWORD"
'****Script finished


Good luck

Niclas Lindblom
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top