I\'m trying to run javascript from a windows command line via script
cscript //NoLogo test.js
However, I can\'t find any predefined objects which are av
Try WScript:
WScript
WScript.Echo('hello world');