Skip to content
⌘ NSIS Forum Archive

FileWrite no LF or CR on a VBS file

3 posts

b_avery@yahoo.c#

FileWrite no LF or CR on a VBS file

I an writing to a VBS file using the following:

FileOpen $4 "file.vbs" w
FileWrite $4 'Hello '
FileWrite $4 'Line two'
FileWrite $4 'Line three'
FileClose $4

But I'm not getting no CR / LF's, but when I process a file.INI I do get LF / CR

What is happening?