Link to home
Start Free TrialLog in
Avatar of Simon336697
Simon336697Flag for Australia

asked on

Deny domain admins group policy permissions

Hi guys
Is it possible to grant only enterprise admins the ability to add,delete,modify group policies, while denying domain admins add,delete,modify group policies.
Any help greatly appreciated.
ASKER CERTIFIED SOLUTION
Avatar of Vinchenzo-the-Second
Vinchenzo-the-Second
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I would like to add that the tip on the schema will only work for all newly created GPOs.
But for the old ones, you need to remove rights manually, or with scripts.
An example could be (with Windows Seven/2008R2):
Import-Module GroupPolicy
Get-GPO -All | Set-GPPermissions -PermissionLevel None -TargetName 'Domain Admins' -TargetType 'Group' -Replace

Open in new window

Else, it exists GPMC scripts to do the same thing (SetGPOPermissions.wsf), you can download them here: http://www.microsoft.com/downloads/en/details.aspx?familyid=38c1a89b-a6d2-4f2a-a944-9236999aee65&displaylang=en
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Simon336697

ASKER

Hi guys. I can't thank you all enough for your brilliant answers, especially tasmants answers.
Long term I agree with Chev - in terms of removing them from domain admins altogether, but for now, I need to only allow enterprise admins that level of right.