robinhood Posted October 6, 2006 Posted October 6, 2006 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.
contink Posted October 6, 2006 Posted October 6, 2006 Possible cause / fix? http://www.edugeek.net/index.php?name=Forums&file=viewtopic&t=2921&postdays=0&postorder=asc&start=0
robinhood Posted October 6, 2006 Author Posted October 6, 2006 Are you redirecting the application data folder? Nope.
robinhood Posted October 7, 2006 Author Posted October 7, 2006 I fixed it by putting this vbscript in startup on the profile (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
contink Posted October 7, 2006 Posted October 7, 2006 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..
MkII Posted October 7, 2006 Posted October 7, 2006 Equally you could use that method to block access when you wanted
Lazyletters Posted October 6, 2007 Posted October 6, 2007 I use a group policy for those logging onto the network. See Internet Explorer settings.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now