I have an ActiveX control implemented as a DLL; this DLL has the type library embedded as a resource. I know that the type library contains a coclass with a special name (say "FooPlugin.BarClass").
How can I extract the CLSID of this class on the command line if I have just the DLL at the name of the class whose CLSID I would like to extract?
I saw the similiar question How to Extract TypeLib from a COM exe on Command Line which made me start tinkering with the tlbimp.exe and tlbexp.exe tools - but without success so far. Maybe I need a third tool to get a textual representation of the binary type library files or something?