asked on
Set oSettingsFile = oFSO.OpenTextFile(strFilePath,ForReading)
Wscript.Echo "Opening file: " & strFilePath
Do Until oSettingsFile.AtEndOfStream
strLine = oSettingsFile.ReadLine
Wscript.Echo strLine
If sendNextLine = True Then
pathsfound = pathsfound & strline & " | "
wscript.echo "What we have f ound thus far is: " & pathsfound
sendNextline = False
End If
If InStr(Trim(strLine),"[Start Menu]") Then
sendNextLine = True
End If
Loop