Para iludir aspas duplas em torno de sua entrada, ou seja, para bater
at my things in the file
em vez de
at "my things in the file"
você pode usar o próximo snippet de código no lugar de objFile.WriteLine objArgs(0)
:
strResult = ""
For ii = 0 to objArgs.Count - 1
strResult = strResult & CStr( objArgs( ii)) & Space( 1)
Next
objFile.WriteLine Rtrim( strResult)