Easy way to to make script to accept list of systems from a text file where you have strComputer = “.” script
Easy way to to make script to accept list of systems from a text file where you have strComputer = "." script Set Fso = CreateObject("Scripting.FileSystemObject") Set InputFile = fso.OpenTextFile("MachineList.Txt") Do While Not (InputFile.atEndOfStream) strComputer = InputFile.ReadLine loop When you get the strComputer = "." and you want to accept the list from a … Read more