Computing.net: Question & Answers Forum Latest Questions

computing
  • 1
  • 1

I’m using a vb script – here’s my script: const ForReading = 1 Set objFSO = CreateObject(“Scripting.FileSystemObject”) Set objFile1 = objFSO.OpenTextFile(“whitelist”, ForReading) strCurrentDevices = objFile1.ReadAll objFile1.Close Set objFile2 = objFSO.OpenTextFile(“ntbtlog.txt”, ForReading) Do Until objFile2.AtEndOfStream strAddress = objFile2.ReadLine If InStr(strCurrentDevices, strAddress) = 0 Then strNotCurrent = ...