Searching Active Directory

D

David Ledbetter

All hail the inhabitants of Geekdom!

I want to find (search for) all pre-service pack 4
computers on our network so that I may exclude them from
Group Policy upgrade. Or, I need to tell Windows to not re-
install if service pack 4 already exists on the machine.

AD GUI-find-interface doesn't include the service pack
field as a searchable property.

Any suggestions?

Thanks, oh cyber-gurus.
 
J

Jerold Schulman

All hail the inhabitants of Geekdom!

I want to find (search for) all pre-service pack 4
computers on our network so that I may exclude them from
Group Policy upgrade. Or, I need to tell Windows to not re-
install if service pack 4 already exists on the machine.

AD GUI-find-interface doesn't include the service pack
field as a searchable property.

Any suggestions?

Thanks, oh cyber-gurus.


Use tip 4195 in the 'Tips & Tricks' at http://www.jsiinc.com
to inspect the CSDVersion value name at
HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows NT/CurrentVersion
using reg.exe from the support tools on your server CD, or use Psexec, tip 4141,
and
For /f "Skip=1 Tokens=1" %%i in ('netdom query /d:YourDomain WORKSTATION') do (
...........

to run reg.exe from your desktop.



Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 

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