problem

M

Meinolf Weber

Hello (e-mail address removed),

Would be really nice, if you can ask a question that we can understand.

Best regards

Meinolf Weber
Disclaimer: This posting is provided "AS IS" with no warranties, and confers
no rights.
** Please do NOT email, only reply to Newsgroups
** HELP us help YOU!!! http://www.blakjak.demon.co.uk/mul_crss.htm
 
R

Richard Mueller [MVP]

just u told me how many user add in the active directory

If the question is how to tell how many users are in AD, you can use the
command line tool dsquery to output DN's of all users to a text file, then
count the number of lines in the file.

dsquery user > users.txt

I load the file users.txt into the command line edit utility, go to the
bottom of the file, and read the last line number. Or you can use Joe
Richards' free adfind utility:

adfind -b dc=MyDomain,dc=com -f
"(&(objectCategory=person)(objectClass=user))" -c

http://www.joeware.net/freetools/tools/adfind/index.htm

Or you can use a VBScript program that uses ADO to return a count of all
users.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top