Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Option Explicit
Const ForReading = 1
Dim sComputerList
sComputerList = "C:\servers.txt"
Dim arrComputers, strComputer
Dim fso, f
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.OpenTextFile(sComputerList, ForReading)
arrComputers = Split(f.ReadAll, vbCrLf)
For Each strComputer In arrComputers
... your code
Next