Hi,
Im trying to output a list of member of a particular AD group.
So far Ive got
Get-QADGroup -IncludeAllProperties -Name WestFinance | select -expand AllMembers
that works fine, but..
1. when I export-csv all I get in the csv is;
2. I'd like to select just the names and discard all other info, so just select info in bold
CN=User Name\, West,OU=West_SecurePC,OU=Users,OU=West,DC=aaa,DC=aaa,DC=co,DC=uk
Thanks!