Reputation: 2643
with AD and power shell why when i do
Get-ADUser -Identity street -Properties *
do i see the ipphone attribute
but if I do get-aduser -filter * -properties * | export-csv .....
no IP phone gets exported to the CSV file?
Upvotes: 1
Views: 2638
Reputation: 947
Run your script, just before exporting it to csv select all like this:
get-aduser -filter * -properties * | select * | export-csv
Upvotes: 1