**URGENT **Does anyone know how to export the users in format file (LDIF) or LDAP ?
I would like to have a file in format LDIF or LDAP of all the users.
Thank you for your advices,
NF
**URGENT **Does anyone know how to export the users in format file (LDIF) or LDAP ?
I would like to have a file in format LDIF or LDAP of all the users.
Thank you for your advices,
NF
Subject: How to Export users in format file LDIF or LDAP
Does anyone know how to export the users in format file (LDIF) or LDAP ?
I would like to have a file in format LDIF or LDAP of all the users.
The easiest way is to:
Start the Domino LDAP. It should already be running on your Admin server; let’s say its hostname is admin.yourco.com
Issue an LDAP command line search similiar to the following to retrieve and print each user’s common name, firstname, lastname, and smtp address.
[C:\notes] ldapsearch.exe -h admin.yourco.com -L -D “cn=fougere niche,o=yourco” -w “yourpassword” “(objectclass=dominoperson)” cn givenname sn mail
The -L (case sensitive) switch produces LDIF output. If your search operation times out, use the -l (little L) switch to change the requested timeout.
google “Domino Directory FAQ” and use the FAQ to look for info on the Domino LDAP server as well as the ldapsearch.exe tool