Ich habe ein Problem.
Ich habe ein VBScript das ein anderes schreiben soll, aber ich weiß nicht wie ich die Anführungszeichen auf dem neu geschriebenen VBScript darstellen soll.
Const strFileName = "output.vbs"
Const ForReading = 1
Const ForWriting = 2
Const ForAppending = 8
Const CreateNotExist = True
Dim strInput, objFSO, objFile
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile(strFileName, ForWriting, CreateNotExist)
objFile.WriteLine "set Network = CreateObject("WScript.Network")"
(...)
objFile.Close
Set objFile = Nothing
Set objFSO = Nothing
Es wäre nett wenn ich eine leicht verständliche Antwort bekäme