ActiveX component can't create object

前端 未结 12 1307
傲寒
傲寒 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 also meet the same error in vbscript.

    Set objFSO = CreateObject("Scripting.FileSystemObject")
    

    Solution:
    Open command line, run :

    regsvr32 /i "c:\windows\system32\scrrun.dll"
    

    and it works

提交回复
热议问题