I need to enumerate the permissions that are embedded within Get-AdPermission
's property "ExtendedRights".
How do I expand the properties within this multi-valued object and display them?
Normally I see commands like this:
Get-Mailbox | Get-ADPermission | where {($_.ExtendedRights -like "*Send-As*")} | Fl
But now I'm in the situation where I simply want to report on the permissions granted to the user (could be send-as, could be receive-as)