I’m trying to create Active Directory permission report and wanted to get the information available in the ‘dsa.msc’ gui snap-in using PowerShell.
This is the data I am after:
User object - properties - security - advanced
Does anyone know how to get the ‘Inherited from’ column using PowerShell?
I managed to get rest of the columns using
(Get-Acl "AD:$($UserDN)").Access
but not sure how to get this column.
Some help appreciated …thanks
1