What you want to be doing is adding that security group to the Administrators group on the PC. You'll have to do that on each PC, just add the group in the domain\groupname format when entering the name.
Main Topics
Browse All TopicsHow do I use domain group policy to grant local pc administator rights to users in a new domain security group ? It seems clear how to create a security group and then grant permissions - like local login - but not clear how to grant 'local administrator' priv..
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
essaydave -
When I use the control panel / user accounts tool on the local PC, it seems like I can only add domain users and not groups - that is, I can only select user object types. How do I add a group defined in active directory on the domain controller to the local computer Adminstrator security group ?
Gurutc -
It's not obvious to me which domain controller group policy security setting will give the new security group (defined in the new container) local administrator rights
Also, if you're going to go ahead and add the domain group to the local admins group on each pc, if you have trouble browsing the domain group to add it, instead type domainname\groupname where domainname is your domain and groupname is the group you're adding. It'll help if you're logged into the domain on the machine while you're adding the group.
Regards,
Travis
Sorry about being unclear on that one Rock, but yeah, you want to manually enter in the groupname. You should be able to script it up easily too, to save you the hassle of running around between computers. (I'll see if I can start one off for you)
As far as I know, Group Policy can allow "Logon Locally", but cannot change security permissions, so will not be able to add the group to the local administrators. Is there a policy that will do this?
Here's how the new container does the security stuff: First, set the group policy on the container for 'no override' to take care of any pesky local security policy edits. Then in Active Directory Users and Computers console, click 'View' on the top bar. Make sure 'Advanced Features' is checked. Then right click on the new container that has your new group in it that has the computers in question as members. Choose 'Properties' then click the 'Security' tab. Now you can set permissions on any objects in the container including the group that holds the computers. This will override local policies on the PCs.
Good Luck,
Travis
Well, that turned out pretty easy. The script is between the lines, what you need to do is create a text file with the computers you want modified each on a seperate line. Then change the file path in the script, change "domainname" to your domain name, and change "groupname" to the group you want to add. Save the file with a .vbs extension, run the script and you're gravy. Thanks go to the Scripting guy, I just added the textfile bit:
http://www.microsoft.com/t
-=-=-=-=-=-=-=-=-=-=-=-=-=
Const ForReading = 1
Set objFSO = CreateObject("Scripting.Fi
Set objTextFile = objFSO.OpenTextFile("c:\da
Do Until objTextFile.AtEndOfStream
strNextLine = objTextFile.Readline
Set objAdmins = GetObject("WinNT://" & strNextLine & "/Administrators")
Set objGroup = GetObject("WinNT://domainn
objAdmins.Add(objGroup.ADs
Loop
=-=-=-=-=-=-=-=-=-=-=-=-=-
Hope that helps
Business Accounts
Answer for Membership
by: gurutcPosted on 2005-09-28 at 11:40:56ID: 14977737
A group probably won't do it, you'll need to create a new AD container object and use group policy to set the extended security settings and permissions. But you can do it this way. Make the container, create a new group in it, then add users, computers, etc from the main user list to the group. So the members stay in the main users and computers group, but the group they're in is in its own container, so you can use group policy to tweak the security stuff on the group by tweaking the container's group policy.
Good Luck,
Travis