How to find extended rights that apply to a schema class object (remix)
The AD guys posted a really cool post about getting extended rights via the schema. That post can be found here:
How to find extended rights that apply to a schema class object
If you dont have Windows 7, 2008 R2, or the Active Directory Management Gateway then you can get similar results by using my functions from here: Getting AD Schema information from Powershell. This works on all versions of AD.
Using these functions you can just do this:
Get-ADSchemaClass group | %{$_.DefaultObjectSecurityDescriptor} | %{$_.access} | ?{$_.ActiveDirectoryRights -eq "ExtendedRight"}
tshell :: Sep.23.2009 ::
Active Directory, All, Powershell, Scripting ::
No Comments »
Leave a Reply
You must be logged in to post a comment.

