Get full streetAddress
I have this like ps script
Get-Contact -OrganizationalUnit "OU=EUROPE,OU=Contacts,OU=test,DC=test,DC=ads" -Filter {Phone -ne $null -and ObjectClass -eq "person"}|
select Name,FirstName,LastName,City,Company,StreetAddress,Phone,MobilePhone,PostalCode |
export-csv -path ".\contacts.csv" -encoding "unicode" -force -NoTypeInformation
But i can only get firstline on StreetAddress attribute, why and how can i fix that?
May 14th, 2012 6:10am