Creating a scripting language
Asked Answered
R

3

7

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

Rajasthani answered 13/3, 2010 at 20:35 Comment(4)
You may be better off building on PowerShell. You get so much more for free. You haven't told us what your purpose is, so who knows?Scupper
Duplicate: #174740Lobbyism
This should not be marked as a duplicate. Since I was dissatisfied with the answers given for question 174240.Rajasthani
@j-t-s, it might be worth indicating what you felt was missing from those answers so that people can provide you with the information you were looking forBohemia
L
0

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!

Lobbyism answered 17/3, 2010 at 23:2 Comment(0)
P
1

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.

Penland answered 13/3, 2010 at 22:13 Comment(0)
L
0

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!

Lobbyism answered 17/3, 2010 at 23:2 Comment(0)
I
0

Topic starter need to carefully read the script56.chm, which can be found on MSDN. This help file describes WSH engine specification.

Industrialize answered 6/10, 2011 at 8:27 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.