1

Via CMD I would like to find out remotely the registry entries for a folder in the registry.

For example.

If I could send a request to a computer to tell me what the keys, d-words, values, etc are in a registry folder...

HKSoftware -> blah blah -> blah blah -> PRIVATE APPLICATION -> SUB FOLDER IN PRIVATE APPLICATION -> Registry Keys in that folder

I hope this question makes sense. Much like another question I asked this is for about 150 machines and was hoping to be able to gather this info quickly.

(These are Windows Boxes)

Thank you.

Patrick
  • 401
  • 3
  • 5
  • 15
  • I know I can remote access the registry and drill down each time to each computer. I am more looking for a cmd script, etc that can return the info. Thanks. – Patrick Dec 15 '11 at 16:07

1 Answers1

1

reg query "\\servername\hklm\SOFTWARE\privateapp" /s

just a start

tony roth
  • 3,884
  • 18
  • 14