Very do I need to install this on my DC or can it be run from my workstation?
Main Topics
Browse All TopicsRight now I have a windows 2000 AD domain. IS there a way for me to search in AD for all network account created during a specific time period?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Sure :)
The date you use is built in the same way as you did above.
ADFind -f "(&(objectClass=user)(obje
You'll find that deleted objects have a seriously limited set of attributes, not everything makes it onto the tombstone.
And note that the two "objectClass=" statements are intentional. There are quite a few differences between the regular domain objects and those which have been deleted.
Chris
hold on I copied and pasted wrong from my last command...sorry about that
ADFind -default -f "(&(objectClass=user)(obje
does this return anything
adfind -default -showdel -f "&(objectclass=user)(objec
- that one is not date specific
Business Accounts
Answer for Membership
by: mkline71Posted on 2009-07-02 at 17:57:25ID: 24769135
Give adfind by MVP Joe Richards a try
http://www.joeware.net/ freetools/ tools/adfi nd/index.h tm</A>
Scot t has a good article here on what you are trying to do
http://blog.scottlowe.or g/2006/10/ 11/finding -recently- created-ac tive-direc tory-accou nts/
So let's say you are trying to find all accounts created between Jan 1, 2009 and May 31, 2009
adfind -default -f "&(objectcategory=person)( objectclas s=users)(w hencreated >=200901010 00000.0Z)( whencreated<=20090531000000 .0Z)" samaccountname whencreated -tdcgt -nodn -csv > c:\usersCreated.csv
That will output the results to a csv drive on your C drive.
Take a look at the screenshot from my lab.
Thanks
Mike
when created query