Search for registry key on multiple PCs in a domain

  • Thread starter Thread starter bwojasinski
  • Start date Start date
B

bwojasinski

I am trying to scan multiple PCs to see if they have the registry key
set for Exchange 2003 Cached mode. Can anybody suggest a good tool for
this?

Thanks
 
I am trying to scan multiple PCs to see if they have the registry key
set for Exchange 2003 Cached mode. Can anybody suggest a good tool for
this?

cmd.exe + reg.exe should be suitable.
 
I am trying to scan multiple PCs to see if they have the registry key
set for Exchange 2003 Cached mode. Can anybody suggest a good tool for
this?


If the key question is "MULTIPLE PCs" then perhaps
the PSTools from SysInternals.com will help (remote
execute from a list of machines), OR you can just run
the commands from within a Startup script, that sends
the OUTPUT (perhaps through simple redirection) to
a known server-share-file location.

PSTools are here:
www.sysinternals.com/Utilities/PsTools.html

Something like this can be used from a batch file:

reg.exe SWITCHES 1>\\Server\Share\Reg%computername%.txt 2>&1

[Notice that such redirection of BOTH error and standard output
requires the precise ORDER of the redirection (>) commands.]

SWITCHES would be your actual directions to the reg command.

You might use a 1>>FileName to APPEND into a file, and you
might also add in addtional commands like sticking an echo of
%date% and %time% to timestamp the entry if you think this
will help you.
 
Herb said:
reg.exe SWITCHES 1>\\Server\Share\Reg%computername%.txt 2>&1
With reg.exe You can query remote computer registry directly without
using psexec.exe
 
Back
Top