I can list acl from an OU with Get-ACl cmdlet but I need to see the permission entries like we can see in :

OU properties -> Security Tab -> Advanced -> View with Active Directory Users and Computers

Here we are on the Permission entry of the AD Object. What I want is the name of the permission (certainly AD Object properties) and know if it's allow or deny.

The result could be like this :

NT AUTHORITY\SYSTEM | GenericAll | Read Fax Numbers | Allow

NT AUTHORITY\SYSTEM | GenericAll | Write Fax Numbers | Allow

...

link|improve this question

60% accept rate
feedback

1 Answer

Get the Quest PowerShell Commands for Active Directory

Get-QADObject "your.domain.name/path/to/OU" | Get-QADPermission -inherited| ft account,rights,rightsdisplay,accesscontroltype,source
link|improve this answer
I hope on version 3 of powershell, it will be native to sort this list – user32433 Sep 23 '11 at 9:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.