What Im looking to do is to output all of my AD Users, including all of their properties, and then output that to a tabular format. The issue I am having is that some of the fields, like MemberOf, dont come through. My script looks like the following:
Get-ADuser -Filter * -Properties * | Export-CSV C:\Temp\MyFile.csv
This is almost what I want, but I just need for all of the properties to be expanded. Some end in "..." meaning there is more to be shown, and others such as "MemberOf" show "Microsoft.ActiveDirectory.Management.ADPropertyValueCollection" instead of showing the actual groups.
Thanks in advance for any help!
Jarrod Sturdivant jarrod.sturdivant@hotmail.com