I'm trying to backup the properties for a bunch of user accounts in Active Directory. I have no problem getting all the properties and exporting them to a CSV but all the mulit-valued properties just show as the type.
Without having to use a join on every property that is multi-valued (which is quite a few) does anyone know of a way to export all a users AD properties with their values?
I would use something like this to get all the properties and export them
Get-ADUser -Filter * -SearchBase 'DNOFSEARCH' -Properties * | Export-Csv C:\Temp\users.csv -NoTypeInformation
But again using that would not have actual values for mutli-valued properties (such as MemberOf)