VBScript Code - Write a line into a file.
Const ForReading = 1, ForWriting = 2, ForAppending = 8
Set FSO = CreateObject("Scripting.FilesystemObject")
Set filetxt = FSO.OpenTextFile("c:\myfile.txt", ForWriting)
filetxt.WriteLine("My first line of text, which I wrote")
filetxt.Close