创建脚本语言
有人可以指导我创建针对 WSH(Windows 脚本主机)的脚本语言的正确方向吗?
我用谷歌搜索过它,但与我几个月前最初搜索它时相比,与此相关的链接似乎要少得多。
谢谢
Can somebody please guide me in the right direction of creating a scripting language that targets the WSH (Windows Scripting Host)?
I have googled for it, but there seem to be far fewer links related to this than when I originally searched for it a few months back.
THank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
该产品现在称为“Windows Script Host”。 MSDN 文档表明您想要的是 Windows 脚本引擎,关于该引擎,文档声称您可以为任何编程语言或环境创建一个脚本引擎 — 大概包括您自己创建的一个。除此之外,文档还不是很清楚。
The product is now called "Windows Script Host". The MSDN documentation suggests that what you want is a Windows Script Engine, about which the documentation claims that you can create one for any programming language or environment—presumably including one you create yourself. Beyond that, the documentation is not terribly clear.
您应该能够在 MSDN;除此之外似乎没有可用的资源(至少我找不到任何资源)。您还可以查看一些开源引擎实现,以了解您的代码应该是什么样子:
如果您对实现 Windows 脚本接口有任何具体问题,请感受可以在这里免费询问他们。祝你好运!
You should be able to find all necessary information about creating Windows Script engines on MSDN; other than that there seems to be no resources available (at least I couldn't find any). You can also take a look at some open-source engine implementations to get the idea of what your code should look like:
If you have any specific questions about implementing Windows Script interfaces, feel free to ask them here. Good luck!
主题启动者需要仔细阅读
script56.chm
,可以在MSDN上找到。该帮助文件描述了 WSH 引擎规范。Topic starter need to carefully read the
script56.chm
, which can be found on MSDN. This help file describes WSH engine specification.