Seraches/Filters on Active Directory Objects

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm trying to run a search on Active Directory computer objects on one list
so I can do a screen dump for my records. The criterial I enter using the
filter command under Users and Computers is Computer Name Starts With Con*
which displays all computers starting with Con. I then try to add an
addition filter computer name is exactly Scan10. Is their anyway to have
this behave as an or statement rather than it has to hold both conditions to
be true.

George
 
You should be using either LDIFDE or CSVDE. You can use many different
criteria to filter your results. Here are some links that discuss how to use
the tools.
http://www.microsoft.com/windowsxp/.../windowsxp/home/using/productdoc/en/csvde.asp
http://groups-beta.google.com/group..._doneTitle=Back+to+Search&&d#0367b8b579d62edf
http://www.windowsitpro.com/ActiveDirectory/Article/ArticleID/38947/ActiveDirectory_38947.html
http://support.microsoft.com/?id=237677

I have only limited experience with these tools but could try and assist you
if you get stuck.

James Borg
 
If specifying the query it would be

(&(objectcategory=computer)(|(name=con*)(name=Scan10)))
 
Back
Top