Proxy settings per machine..?

G

Guest

I need to be able to set the internet proxy address on an XP workstation to
be the same regardless of logs onto it. Our users have different proxy
addresses set through GPO User Configuration so I need that to be ignored.

I see a setting 'Make proxy settings per machine, rather than per user' in
computer config GPO (perfect solution?!) but how do I set the proxy address I
want the machine to use?
 
J

Jerold Schulman

I need to be able to set the internet proxy address on an XP workstation to
be the same regardless of logs onto it. Our users have different proxy
addresses set through GPO User Configuration so I need that to be ignored.

I see a setting 'Make proxy settings per machine, rather than per user' in
computer config GPO (perfect solution?!) but how do I set the proxy address I
want the machine to use?

Use the following:

REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings" /V ProxySettingsPerUser /T REG_DWORD /F /D 0
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings" /V ProxyEnable /T REG_DWORD /F /D 1
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings" /V ProxyOverride /T REG_DWORD /F /D 1
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings" /V ProxyServer /T REG_SZ /F /D "192.168.0.1"


REG.EXE is built into Windows XP, Windows Server 2003, and later operating systems, or installed from the
Windows 2000 Support Tools on the Operating System CD-ROM.

Jerold Schulman
Windows Server MVP
JSI, Inc.
http://www.jsiinc.com
http://www.jsifaq.com
 
N

Norbert Fehlauer [MVP]

Fabrussio wrote:
Hi,
I see a setting 'Make proxy settings per machine, rather than per
user' in computer config GPO (perfect solution?!) but how do I set
the proxy address I want the machine to use?

CLASS MACHINE
CATEGORY "Internet Explorer"
POLICY "Proxy-Configuration"
KEYNAME "Software\Microsoft\Windows\CurrentVersion\Internet Settings"
PART "Activate proxy" CHECKBOX
VALUENAME "ProxyEnable"
END PART

PART "Proxy-IP und Port, z.B. 192.168.99.5:3128" EDITTEXT
VALUENAME "ProxyServer"
END PART

PART "Bypass Proxy Server for Local Addresses, leave <local>"
EDITTEXT DEFAULT "<local>"
VALUENAME "ProxyOverride"
END PART
END POLICY
END CATEGORY

HTH
Norbert
 

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

Top