Getting the GUID of an installed COM object

后端 未结 1 1387
执笔经年
执笔经年 2021-01-21 09:41

I have a 32bit COM object that I want to use with 64bit PHP.

I am trying to follow the tutorial here:

http://www.gfi.com/blog/32bit-object-64bit-environment/

相关标签:
1条回答
  • 2021-01-21 10:36

    You will at least have to know the ProgID of the COM component. Something similar to "Word.Application", the string you pass to the COM() constructor. Run Regedit.exe and look through the HKEY_CLASSES_ROOT for that string. Open the node, the CLSID key's default value gives you the GUID you are looking for.

    0 讨论(0)
提交回复
热议问题