I have a VBScript that writes error info to a text file. it works but appends to the bottom of the file.
set log = fs
penTextFile("C:\cleanMB\CleanMBLog.txt", ForAppending, true)
log.WriteblankLines(2)
log.WriteLine("Success! "&NOw)
How can I append this to the top of the file?
set log = fs
log.WriteblankLines(2)
log.WriteLine("Success! "&NOw)
How can I append this to the top of the file?