
Microsoft provides a free command line utility called acldiag.exe to by which we can generate a report like log based on the permissions and delegation assigned to Ou's/groups/objects in active directory.
we ca even give input from a text file if you need to take report on multiple Ou's. The text file must contains Ou names.
let's see that ...
here we will see an example code to take permission report for multiple Ou's in a domain. the names of the OU's will be given to batch file through a text file.
Download support tools from http://www.microsoft.com/download and install it in your computer.
for /f %%a in (c:\users\delphin\desktop\list.txt) do (
acldiag "ou=%%a,dc=domain,dc=com" >>c:\users\delphin\desktop\log.txt
)
Copy...