I need to programatically check arbitrary Dlls to see whether they are inproc COM servers. In other words, can they be registered on the current system using regsvr32 / DllRegisterServer.

Short of Andy's suggestions on this question, is there a way to figure out the needed without having to:

  • Load the library and check for DllRegisterServer/DllUnregisterServer exports.
  • Attempt registration with regsvr32 while catching exceptions?

There must be something in the PE format that indicates the needed. My assumption is that 'regsvr32' already does this internally. Would appreciate any input.

有帮助吗?

解决方案

No. The only thing that makes a DLL a COM object is that it exports DllGetClassObject. The only thing that makes it registerable is that it exports DllRegisterServer.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top