Jump to content

Recommended Posts

Posted

I'm not sure whether this is an LNM problem - or a pc image problem but here's the scenario:

 

- Mini-towers with XP Pro SP1 logon to the server GPO invokes - my documents redirected fine, the internet works.

 

- 1st user logs off - 2nd users logs on and everything works fine but - the proxy settings and the homepage are gone - so no 'net access. If the PC reboots the first user to log on can browse the net fine.

 

All desktop PCs with different hardware work fine everytime. I guess I'm answering my own question and it is an image issue - but has anyone come accross this before? Is there a fix so I don't have to re-image all the towers?

 

- tried upgrade to service pack 2 - no joy

- there is the possibility they were upgraded from XP Home Edition

 

One last note - the towers did not have this problem when logging on to the old (now departed) server (server 2000).

 

Any suggestions gratefully accepted.

Posted

I fixed it by putting this vbscript in startup on the profile :D (works a treat):

 

set WSHShell = WScript.CreateObject("WScript.Shell")

 

' Proxy Settings

WSHShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyServer", "10.0.0.2:8080"

WSHShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyEnable", 1, "REG_DWORD"

WSHShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyOverride", "10.0.0.*;intranet.*;"

 

Set WSHShell = WScript.CreateObject("WScript.Shell")

 

' Home Page URL

StartPage = "http://www.google.co.uk"

WSHShell.RegWrite "HKLM\Software\Microsoft\Internet Explorer\Main\Start Page", StartPage

WSHShell.RegWrite "HKCU\Software\Microsoft\Internet Explorer\Main\Start Page", StartPage

Posted

Oh hold on a second... it could just be that you haven't set the proxy as per machine instead of per user so each user account was being considered seperate and thus empty.

 

Either way you got a fix that worked so all good..

  • 11 months later...

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...