Inherited OU Rights

Needed to check an OU structure to see if they have the good old “Include inheritable permissions from this object’s parent” checked.

So knocked this up:

$RootOU = [ADSI]”LDAP://:389/Full DN of OU”
$ChildOUs = $RootOU.psbase.Children
ForEach ($xOU in $ChildOUs){
Write-Host $xOU.distinguishedName -Foregroundcolor Red -NoNewLine Write-Host ” : ” -NoNewLine $xOU.psbase.ObjectSecurity.AreAccessRulesProtected
}

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.