Search code examples
windowsprogramming-languagesscriptingwsh

Creating a scripting language


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


Solution

  • 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!