我开始为我的 vbscripts 制作 WSC 文件而乱七八糟,但有几件事我在这里不太能工作和理解......
例如, getObject 似乎不起作用:
测试.WSC:
<?xml version="1.0"?>
<component>
<registration
description="MyTest"
progid="My.Test"
version="1.00"
classid="{38b3dd76-c4ee-44d0-978e-4ce2d7e14b0f}"
>
</registration>
<public>
<method name="msg">
<PARAMETER name="this"/>
</method>
</public>
<script language="VBScript">
<![CDATA[
sub msg(this)
msgbox this
end sub
]]>
</script>
</component>
vbscript(在同一文件夹中)
set x = getObject("test.wsc")
x.msg "hello world!"
如果我运行这个我得到这个错误:VBScript Object required: x , code: 800A01A8
也可以从 vbscript 调用“scriptlet.tlb”中的方法吗?欢迎任何帮助:)