ActiveX component can't create object

前端 未结 12 1257
傲寒
傲寒 2020-12-01 01:42

I have just installed a third party app on my Windows Server 2008 server and I get the

ActiveX Component can\'t create object

m

12条回答
  •  执笔经年
    2020-12-01 02:02

    I had this problem too. I was trying to run an old 32-bit dll in a 64 bit system. I got it working by copying the .dll to the C:\Windows\SysWoW64\ directory and running this:

    %systemroot%\SysWoW64\regsvr32 "C:\Windows\SysWoW64\thenameofyourdll.dll"
    

    And also enabling IIS to run 32 bit apps

提交回复
热议问题