Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Terminal Server 2003

Status
Not open for further replies.

78mike78

MIS
Feb 14, 2008
70
US
I am trying to get a few trusted sites for IE for all users that login to the TS server, or even all users everywhere in the company, but it doesnt work on the terminal server. It works for every computer, but not for users on the ts server. It works for admin accounts..any idea..PLEASE HELP
 
I am trying to get a few trusted sites for IE for all users that login to the TS server

You are trying to GET them or SET them? Please be more specific on what you are trying to do and what methods you have already tried.

I hope you find this post helpful.

Regards,

Mark

Check out my scripting solutions at
Work SMARTER not HARDER. The Spider's Parlor's Admin Script Pack is a collection of Administrative scripts designed to make IT Administration easier! Save time, get more work done, get the Admin Script Pack.
 
I am trying to set them. Place some urls in the trusted sites.
 
I do it via vbscript. Here is a sample. I suggest you manually add sites using both http and https and look at the registry path as I am showing. In the case of my sample, this is adding a site called TEAM to the trusted sites.

Code:
Dim WSHShell
Set WSHShell = CreateObject("Wscript.Shell")
WSHShell.RegWrite "HKCU\Software\microsoft\Windows\Currentversion\Internet Settings\ZoneMap\Domains\team\http",2,"REG_DWORD"

I hope you find this post helpful.

Regards,

Mark

Check out my scripting solutions at
Work SMARTER not HARDER. The Spider's Parlor's Admin Script Pack is a collection of Administrative scripts designed to make IT Administration easier! Save time, get more work done, get the Admin Script Pack.
 
Thank you. But i am not sure what you mean.
So you are saying to do it trough registry since the GPO is not working?
 
I m actually just trying to add *.corp.ttc* to the local intranet websites so that it uses does security settings based on intranet.
 
Also, would i have to create a folder in registry call corp.ttc then add 1 or 2 for the zone?
 
Did you compare the settings after manually setting it once?

Looks to me like you should be using the following:

Code:
Dim WSHShell
Set WSHShell = CreateObject("Wscript.Shell")
WSHShell.RegWrite "HKCU\Software\microsoft\Windows\Currentversion\Internet Settings\ZoneMap\Domains\server.corp.ttc\http",2,"REG_DWORD"

No need to make the key seperately.

I hope you find this post helpful.

Regards,

Mark

Check out my scripting solutions at
Work SMARTER not HARDER. The Spider's Parlor's Admin Script Pack is a collection of Administrative scripts designed to make IT Administration easier! Save time, get more work done, get the Admin Script Pack.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top