Jan 14, 2004 #1 angels1 IS-IT--Management Joined May 17, 2003 Messages 68 Location US How can I export all of my user information from active directory to a single csv file
Jan 14, 2004 #2 AdmanOK MIS Joined Mar 5, 2001 Messages 412 You can use ADSI and write a VB script to do this... you could also download a demo of Hyena (http://systemtools.com) and use it's exporter feature. Upvote 0 Downvote
You can use ADSI and write a VB script to do this... you could also download a demo of Hyena (http://systemtools.com) and use it's exporter feature.
Jan 14, 2004 Thread starter #3 angels1 IS-IT--Management Joined May 17, 2003 Messages 68 Location US Thank you very much Upvote 0 Downvote
Jan 14, 2004 #4 crobin1 MIS Joined Aug 22, 2002 Messages 381 Location US You can also use the csvde command. An example to output information for every user in the Users container is: Code: csvde -f out.csv -d "cn=Users,dc=domain,dc=com" -p subtree -r "(objectClass=user)" Type csvde -? to get more options. There are also some MS KB articles on using it. Upvote 0 Downvote
You can also use the csvde command. An example to output information for every user in the Users container is: Code: csvde -f out.csv -d "cn=Users,dc=domain,dc=com" -p subtree -r "(objectClass=user)" Type csvde -? to get more options. There are also some MS KB articles on using it.