Hi
I am using the following one-liner to list the users of the nested security groups but I'm aware that it is not capturing any user accounts in the origional group.
get-qadgroup "domain admins" | get-qadgroupmember | where { $_.type -eq "group"} | get-qadgroupmember
Is there a better way to do this that will captuer all users that are members of the origional group and it's nested groups?
Thanks
Lee