#114399 - 2004-02-19 04:57 PM
Limiting Websites
|
Bob Deerinwater
Starting to like KiXtart
Registered: 2002-05-05
Posts: 101
Loc: Covina California
|
I have the need to be able to limit Internet explorer to only go to a handful of sites. I have seen this but have no idea how they are doing it. Could any one lend some suggestions on this. Native Windows 2000 Environemnt with active directory.
|
|
Top
|
|
|
|
#114400 - 2004-02-19 04:58 PM
Re: Limiting Websites
|
Kdyer
KiX Supporter
   
Registered: 2001-01-03
Posts: 6241
Loc: Tigard, OR
|
Firewall Rules? This sounds like a Cisco or related issue.
Kent
|
|
Top
|
|
|
|
#114401 - 2004-02-19 05:01 PM
Re: Limiting Websites
|
Bob Deerinwater
Starting to like KiXtart
Registered: 2002-05-05
Posts: 101
Loc: Covina California
|
Oh by the way...No firewall...and the school will not spend the money on one.
|
|
Top
|
|
|
|
#114405 - 2004-02-19 07:33 PM
Re: Limiting Websites
|
NTDOC
Administrator
   
Registered: 2000-07-28
Posts: 11629
Loc: CA
|
Bob,
A lot depends on what type of access the users have on the computers and how smart each user is.
You might be able to easily control some users with some cheap methods, but the more intelligent or savy users will probably get around most things you try.
In order to really control the workstations you will need to either be well versed in network/desktop administration or purchase 3rd party tools to help you.
Having a proxy server that the clients must use would be one good way to control IE but perhaps not other things you may want to control.
You could add a TON of Websites in the LMHOSTS file to use the local host 127.0.0.1 but that is hard to manage and there are millions of Websites
Fortres has some pretty good software for controlling systems, but is not free. http://www.fortres.com/
|
|
Top
|
|
|
|
#114409 - 2004-02-19 10:07 PM
Re: Limiting Websites
|
Bob Deerinwater
Starting to like KiXtart
Registered: 2002-05-05
Posts: 101
Loc: Covina California
|
I guess i just have one last question is there a way to make it so that a user cannot change the url in address. My thought is that i map a drive on the server and put a couple of links the 5 websites that are needed to complete class and set the home page according to Group membership.
|
|
Top
|
|
|
|
#114411 - 2004-02-19 10:30 PM
Re: Limiting Websites
|
Bob Deerinwater
Starting to like KiXtart
Registered: 2002-05-05
Posts: 101
Loc: Covina California
|
I have removed the run command off of the desktops. This is a computer learning school and it is just to keep the honest people honest and the wanderers a little mor difficult.
|
|
Top
|
|
|
|
#114412 - 2004-02-19 10:40 PM
Re: Limiting Websites
|
ShaneEP
MM club member
   
Registered: 2002-11-29
Posts: 2127
Loc: Tulsa, OK
|
This should remove the address bar and remove the option the re-add it.
Code:
$null = WriteValue("HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Toolbars\Restrictions","NoToolbarOptions",1,REG_DWORD) $null = WriteValue("HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Toolbars\Restrictions","NoAddressBar",1,REG_DWORD)
|
|
Top
|
|
|
|
#114413 - 2004-02-19 11:02 PM
Re: Limiting Websites
|
ShaneEP
MM club member
   
Registered: 2002-11-29
Posts: 2127
Loc: Tulsa, OK
|
Bob...here are most of the keys to set if you want to go the route of the proxy settings. It will set IE to use the proxy server of 0.0.0.0 (which is invalid of course) except for the domains you list in the Proxy Override key. The only problem I see with this solution is that the user has to have local admin rights to write the policy keys which prevent them from being able to change hte proxy settings back. If the users are local admins then you shouldnt have any problems with this.
Code:
$null = DelValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings","AutoConfigURL") $null = WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings","ProxyEnable",1,REG_DWORD) $null = WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings","ProxyServer","0.0.0.0:5555",REG_SZ) $null = WriteValue("HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Control Panel","Connection Settings",1,REG_DWORD) $null = WriteValue("HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Control Panel","Connwiz Admin Lock",1,REG_DWORD) $null = WriteValue("HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Control Panel","ConnectionsTab",1,REG_DWORD) $null = WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings","ProxyOverride","*.kixtart.org;*.kixforms.org",REG_SZ)
|
|
Top
|
|
|
|
#114414 - 2004-02-19 11:11 PM
Re: Limiting Websites
|
Bob Deerinwater
Starting to like KiXtart
Registered: 2002-05-05
Posts: 101
Loc: Covina California
|
I was just starting to play with that part of the registry..thanks for the help.
|
|
Top
|
|
|
|
Moderator: Arend_, Allen, Jochen, Radimus, Glenn Barnas, ShaneEP, Ruud van Velsen, Mart
|
0 registered
and 1376 anonymous users online.
|
|
|