I looked at it, but I can't seems to write a file
code:
var ForAppending = 8;
var fso, theFile;
fso = new ActiveXObject("Scripting.FileSystemObject");
theFile = fso.OpenTextFile("data.txt", ForAppending, true);
theFile.WriteLine("Hello World!");
theFile.Close();