3

I would like to see if DLL registration was successful on a Windows Server 2008 machine. Is there any way to view a list of all registered DLLs??

Thanks!

Thomas Stringer
  • 282
  • 2
  • 5
  • 15

2 Answers2

2

When you register a dll and extract its class ID and other information, it stores it in HKEY_CLASSES_ROOT\CLSID\{GUID} in the registry. Probably the easiest thing to do is open up that registry hive, right click and search for the complete file name.

BoxerBucks
  • 1,374
  • 1
  • 9
  • 19
0

Use Powershell applet: gdwi win32_services

Mike
  • 1