Here is my script that works great:
Select-object -Property name,@{Name="bofaamlmember";Expression={$_.bofaamlmember -join ";"}},@{Name="canonicalName";Expression={$_.canonicalName -join ";"}} | Sort-object bofaamlmember | Export-Csv "C:\Users\nbkn4wz\documents\Scripts\bofaamlmemberExt.csv"
The script returns the values that I requested:
**Name** **Bofaamlmember**
RG-AdministratorsMembers CN=CSW_IIS_Support_SvcAcct_BUSP_AP,OU=Common,etc....
The issue I am having is within the bofaamlmember attribute there are members of that attribute:
Example: Attribute Editor
I want to be able to export just the members.
I don't want to use the CN, its too much info. I want just the value(s) that are listed in that box.