i'm using this powershell to export displayname and MemberOf data to a csv
Get-ADUser -Filter * -Properties * -SearchBase "OU=xxx,OU=xxx,OU=xxx,DC=xx,DC=xx" | select displayname, MemberOf | Export-Csv -Path C:\Script\Export.csv
I believe the buffer is limiting the MemberOf field in fact if the user is member of multiple groups in AD it terminates with ...
i.e.
MemberOf
--------
{CN=MICKEY MOUSE,OU=LOONEY TUNES,OU=TOONS,DC=XX,DC=XX, CN=DAFFY D...
is there any way to put another filter on top of memberof to filter out just characters in between "CN=" and "," to read only MICKEY MOUSE and DAFFY DUCK ?
Thank you very much
For example
Get-ADUser -Filter * -Properties * -SearchBase "OU=LOONEY TUNES,OU=TOONS,DC=xx,DC=xx" | select displayname, MemberOf | Export-Csv -Path C:\Script\Export.csv
Should list me all users and their membership in a specific OU, it's working but it's badly formatted because i need only CN= data and not OU= and DC=
i.e.
displayname MemberOf
----------- --------
PORKY PIG {CN=MICKEY MOUSE,OU=LOONEY TUNES,OU=TOONS,DC=XX,DC=XX, CN=DAFFY D...
As Santiago already commented, the
MemberOfproperty of an AD user is an array of DistinguishedNames.I gather you want a CSV file where the groups are listen with their Name, rather then their DistinguishedName.
The next code will output a csv file where for each group a user is member of a separate line is created
If you rather have one line per user and have the groups listed separated by some delimiter character, use this instead
P.S. Don't use
-Properties *on Get-ADUser if all you are after are just two extra properties which are not already in the default set