views:

428

answers:

1

Is there any way of obtaining a list of registered COM interfaces on a windows machine, with GUIDs?

Before anybody thinks this isn't related to programming, I need this data in order to reference a COM interface in F# (or C#) for interfaces that tlbimp isn't exposing.

+7  A: 

Have you tried using OleView?

http://www.microsoft.com/downloads/details.aspx?familyid=5233b70d-d9b2-4cb5-aeb6-45664be858b6&displaylang=en

ilitirit
Thank you *very very* much :-)
kronoz
I you're using Vista you need read this: http://support.microsoft.com/default.aspx/kb/176938
ilitirit
If you have a pointer to a COM object in a program, will OleView show you the interfaces. I just have a COM object instance and want to find out all the interfaces available (I have no starting GUID).
Geoff Cox
Mike Henry