WSH - 列出可用功能
我有兴趣知道是否有任何方法可以让脚本获取由某些父应用程序托管的 Windows 脚本宿主 (VBScript) 中的可用方法/函数列表?
如果它是一个 .NET 应用程序,它将使用反射,但我不确定 WSH 是否有类似的东西。
I would be interested to know if there is any way for a script to obtain a list of available methods/functions within a Windows Script Host (VBScript) being hosted by some parent application?
If it was a .NET app, it would be using reflection, but I'm not sure if there is anything similar for WSH.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Windows 脚本宿主是一个环境。它不能“由某些父应用程序托管”。您是否询问使用替代脚本引擎?您提到 VBScript 需要内置脚本引擎之一,而这两个引擎都不提供任何反射方法。
Windows Script Host is an environment. It cannot be "hosted by some parent application". Are you asking about using an alternative scripting engine? You mention VBScript which requires one of the built in scripting engines, neither of which provide any methods of reflection.
http://www.w3schools.com/vbscript/vbscript_ref_functions.asp
解析 .vbs 文件。
或者编写vbscript Class并用IDL、DCOM类比。
。网?使用 Powershell。
http://www.w3schools.com/vbscript/vbscript_ref_functions.asp
Parsing .vbs file.
Or write vbscript Class and use IDL, DCOM analogy.
.Net? Use Powershell.