hello to all !! given the code :
elif choice == "3":
print "all users list :"
print"\n"
import active_directory
for user in active_directory.search ("objectCategory='Person'",
"objectClass='User'"):
print user
""
that lists all active directory personal ...
how can i pipe this into a csv file ??
or a text file ?
do need to first make it txt and then csv??
-- http://mail.python.org/mailman/listinfo/python-list
