hey! yeah, get-aduser defaults to a bunch of stuff you probably don't need if you don't specify. you gotta tell it which properties to grab explicitly.
try something like this:
`get-aduser -filter {enabled -eq $true} -properties samaccountname, name, emailaddress | select-object samaccountname, name, emailaddress | export-csv c:\temp\active_users.csv -notypeinformation`
you can swap out `samaccountname, name, emailaddress` for whatever info you actually want. the `-notypeinformation` part is also pretty key for clean csvs. hope that helps!