Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Writing a language for the Windows Scripting Host (WSH)

Has anyone had any experience targetting WSH in the way that VBScript, JScript, PerlScript, xbScript and ForthScript (among other) do, such that the language can be used from the command line and embedded in server-side web pages? Where do I go to get that kind of information?

like image 844
bugmagnet Avatar asked Oct 06 '08 13:10

bugmagnet


1 Answers

These are called Windows Script Engines and are implemented by exposing the engine via COM. There is a lot documentation on MSDN, and the actual interfaces are fairly straight forward.

like image 183
Rob Walker Avatar answered Sep 20 '22 10:09

Rob Walker