The VBScript interpreter (cscript.exe/wscript.exe) comes in two flavors on a 64-bit version of Windows: a 32-bit version and a 64-bit version.
The 32-bit version can create and use 32-bit COM components only, and the 64-bit version can create and use only 64-bit COM components.
By default, .vbs files are associated with the 64-bit version. You COM component is most likely a 32-bit one, hence the error.
You can find the 32-bit version in the %windir%SysWOW64
folder. Launching this version should give you access to all 32-bit COM components:
%windir%SysWOW64wscript.exe myScript.vbs
or
%windir%SysWOW64cscript.exe myScript.vbs
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…