Forum Discussion
Ivan54
Jul 07, 2017Bronze Contributor
EOL PS - Export-Csv only shows GUIDs instead of values
Hi,
can anybody explain to me why this command doesn't create a proper csv file with values?
I'm using the eol module for modern authentication
get-unifiedgroup | ft displayname,notes,primarysmtpaddress,sharepointsiteurl,classification | Export-Csv c:\temp\groups.csv
Content only shows some GUIDs but no values.
3 Replies
Sort By
- How about instead: get-unifiedgroup | Select-Object displayname,notes,primarysmtpaddress,sharepointsiteurl,classification | Export-Csv c:\temp\ test.csv -NoTypeInformation
- Ivan54Bronze Contributorthis works, why doesn't my code above?