vote up 2 vote down star
1

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 available. I'm totally at a loss - Can't get hello world to work:

System.print("Hello, World!")

results in "System" is undefined

Is there another way I should be running this - like through .NET runtime?

Thanks

jeff

flag

62% accept rate

3 Answers

vote up 4 vote down check

You are using the Windows Scripting Host.

You can say things like:

WScript.Echo("Hello, World.");

It's all COM-based, so you instantiate ActiveX controls to do anything useful:

var y = new ActiveXObject("Scripting.Dictionary");
y.add ("a", "test");
if (y.Exists("a"))
   WScript.Echo("true");

Or:

var fso, f1;
fso = new ActiveXObject("Scripting.FileSystemObject");
// Get a File object to query.
f1 = fso.GetFile("c:\\detlog.txt");   
// Print information.
Response.Write("File last modified: " + f1.DateLastModified);

See Windows Script Host.

link|flag
vote up 1 vote down

Try WScript:

WScript.Echo('hello world');
link|flag
vote up 1 vote down

That is actually JScript and when run with cscript or wscript, it's under the Windows Scripting Host environment, which has no real similarity with web-based javascript.

Windows Scripting Host reference

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.