DevilWAH
DevilWAH

Reputation: 2643

AD Powershell and IPPhone

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

Answers (1)

kekimian
kekimian

Reputation: 947

Run your script, just before exporting it to csv select all like this:

get-aduser -filter * -properties * | select * | export-csv

Upvotes: 1

Related Questions