Exporting users phone numbers from active directory

  • Thread starter Thread starter Matt Brown
  • Start date Start date
M

Matt Brown

Can someone please tellme how to export phone numbers from
your users OU? The export option doesnt include that
field. I'm sure there has to be a way to pull this.

Thanks in advance,
Matt
 
You can add the column before you do the export. (View,
Choose Columns, add Business Phone), then Export.
 
Use ldifde to dump th use info from AD:

sample syntax to dump Joe User to dump.txt:

ldifde -f c:\test\dump.txt -d "cn=joe user,cn=users,dc=domain,dc=com"

You'll have to use actual ldap path
 
You can use csvde tool to export users properties in csv text format which
can be easily imported in Excel, AccesWord, .... Use -o option to specify
attributes to export.

--
Regards

Matjaz Ladava, MCSE (NT4 & 2000)
(e-mail address removed)
http://ladava.com
 
Back
Top