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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Group Policy & Administrative Templates - HELP 1

Status
Not open for further replies.
Feb 28, 2003
8
US
I'm trying to do two things via Group Policies.

1) Modify the string value "Start Page" in the following key:
"HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main" and set it to a page of my choosing.

2) Add the DWORD "Completed" to the following key:
"HKEY_CURRENT_USER\Software\Microsoft\Internet Connection Wizard" and set its binary value to 01.

I've been experimenting with Administrative Templates, but have been coming up short. Here's what I'm using for the start page:


CLASS MACHINE
CATEGORY "IE Default Start Page"
KEYNAME "Software\Microsoft\Internet Explorer\Main\Start Page\"
POLICY "Intranet Home Page"
KEYNAME "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet
Explorer\Main\Start Page"
VALUENAME "EXPLAIN "Set default IE start page to END POLICY
END CATEGORY


It's not working.

And for my second task I can't figure out how to even set a DWORD value at all from an ADM template. Could someone please provide me with the proper syntax to make these work, or at least point me in the right direction?

Thanks in advance.
-BDA
 
don't try to reinvent the wheel.

in group policies look for the policy:

User Configuration\Administrative Templates\Windows Components\Internet Explorer\

There is a policy in there called "Disable Internet Connection Wizard" just enable that.

also check out
for your first issue

-Matt
 
Thanks so much for your help Matt.
A large portion of our staff are only employed here for a year or 2... and the majority are extremely tech-impaired. We restrict users from accessing just about every configuration setting (their account priveleges are VERY limited)... the less they can do, the less they can mess up, and the less time we have to spend fixing their mistakes or walking them through setup. We used to have the Wizard enabled, but disabling it saves us lots of time & energy. I'm not sure why, but this week we started getting the error message that new users couldn't run the wizard (it's disabled). We've had it disabled for over a year, and hadn't experienced any problems until recently. A quick registry modification "Complete" ends the error message... but doing this for every new user account we create is just not efficient. That's why I was hoping to find the syntax for an ADM template to fix this.
So, any help reinventing our wheel will be much appreciated. :)
I appreciate the link you gave me... Thanks again.
-BDA
 
Open notepad and copy/paste the below as complete.reg :

***** start copy/paste below this line
REGEDIT4

[HKEY_CURRENT_USER\Software\Microsoft\Internet Connection Wizard]
"Completed"=dword:00000001

****** end copy/paste above this line

Place a line in your logon script:

regedit /s completed.reg


 
Similarly, and edit as appropriate:

***** start copy/paste below this line
REGEDIT4
[HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main]
"Start Page"="http:\\
****** end copy/paste above this line
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top