' +++ Konstanten und Variablen deklarieren
Const fsForReading = 1
Dim strDateiname, strInhalt
Dim objFs ' FileSystemObject Objekt
Dim objTextStream ' Textstream Objekt
' +++ Datei, deren Inhalt gelesen wird:
strDateiname = "C:\...\Desktop\list.txt"
' +++ FileSystemObject anlegen und in fs speichern:
Set objFs = CreateObject("Scripting.FileSystemObject")
' +++ Textstream oeffnen, erlaubt Zugriff auf den Inhalt der Datei
Set objTextStream = objFs.OpenTextFile(strDateiname, fsForReading)
' +++ Gesamten Datei-Inhalt lesen und ausgeben
strInhalt = objTextStream.ReadLine
If InStr(1, strInhalt, "backup1.cmd", vbTextCompare) = suche Then
MsgBox ("nix da!")
Else
WScript.Sleep 30000 '+++warte 30 Sec
End If
' +++ Textstream schliessen
objTextStream.Close