Using group policy to configure IE

A

Andy Welcomer

Hello,

I need to publish IE in a citrix meta frame enviroment and would like to
remove the address bar so that people can only go to the site I direct them
to. I tried looking in group policy with no success. Also I would like to
know how I can have all users set to delete temperary interfiles on exit?

thanks in advance

Andy
 
C

Chriss3

There is no such built-in policy setting in Group Policies.
I recommend you to take use of the IEAK 6 SP1:
http://www.microsoft.com/windows/ieak/downloads/ieak6/ieak6sp1.asp

To delete temporary interfiles on logoff you may can take use of the follow
script, and assign it as an logoff script within a group policy:

Set objFSO = CreateObject("Scripting.FileSystemObject")
set net = Wscript.CreateObject("Wscript.Network")
UserString = net.UserName
TempDir = "%SystemDrive%\Documents and settings\" + UserString + "\local
settings\Temporary Internet Files\*"
objFSO.DeleteFile TempDir

--
Regards,

Christoffer Andersson
No email replies please - reply in the newsgroup
If the information was help full, you can let me know at:
http://www.itsystem.se/employers.asp?ID=1
 

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