我开始搞乱为我的vbscripts制作WSC文件,但我有几件事情 在这里不太开始工作和理解...
例如,getObject似乎不起作用:
test.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对象:x,代码:800A01A8
是否可以在vbscript的“scriptlet.tlb”中调用方法? 欢迎任何帮助:)
答案 0 :(得分:1)
如果没有注册,您必须使用脚本协议:
set goFS = CreateObject("Scripting.FileSystemObject")
sFSpec = goFS.GetAbsolutePathName(".\test.wsc")
set x = getObject("script:" & sFSpec)
x.msg "hello world!"
学习WSC (Windows Script Components) Without Registration!
注册 - 保留
progid="My.Test"
记住。