Link to home
Start Free TrialLog in
Avatar of kmoloney
kmoloneyFlag for United States of America

asked on

Active Directory Search

Hello,

I need to search through our active directory and find, for each user (human), their account, their display name, the "Description" and, in the organization tab, their department and their Manager.  If any of these fields is blank, I would need to know that.

Also, is there a way to copy the value of the "Department" into the "Description" field, or vice versa?

Thanks!!
Avatar of Mike Kline
Mike Kline
Flag of United States of America image

You could use a tool like adfind to search   http://www.joeware.net/freetools/tools/adfind/index.htm 


adfind -default -f "&(objectcategory=person)(objectclass=user)"  samaccountname  diaplayname description department manager -csv -nodn > users.csv

Thanks

Mike
Avatar of kmoloney

ASKER

That worked well for pulling the info -- can I add values using this software?  Plus it's a complicated as far as instructions.
ASKER CERTIFIED SOLUTION
Avatar of Mike Kline
Mike Kline
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial