Jump to content

Recommended Posts

Posted

I've given up trying to resolve why GPOs arent applying the proxy settings and ticking the boxes to enable the proxy, so for now, I want to make a reg file that can be run silently as a user logs in and will make the necessary changes.

I can't remeber where the area is in the registry for adding a proxy server and enabling it.

Anyone able to help please?

 

TIA

Posted

AutoIT example

 

RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main", "First Home Page", "REG_SZ", "http://moodle.st-johns.org.uk/")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main", "Start Page", "REG_SZ", "http://moodle.st-johns.org.uk/")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings", "ProxyServer", "REG_SZ", "10.0.0.2:8080")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings", "Proxyenable", "REG_DWORD", "1")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings", "ProxyOverride", "REG_SZ", "intranet")
Run('C:\Program Files\Internet Explorer\iexplore.exe')

Posted

Are you using Application Data Redirection? If so that would be why your IE Settings are not applying! I experienced this when we setup our new network a year or so ago. It is a known problem and is mentioned on the Microsoft KB.

 

By setting them back to the Local Profile that fixed our IE Maintenance Settings which were not applying.

 

Hope this helps.

Posted

its a network i inherited with no handover or anything, so i dont want to go making too many changes. the network will be wiped fresh next month so this is just an interim fix rather than a sweeping change so i dont want to go messing with peoples profiles.

 

and yep its been applied to the user settings and in an OU only populated by users.

if this works it'll do for now!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...