I managed to read the contents of the file untitle.txt on another computer using Local Area Network using this VB .Net code.
Dim fileReader As System.IO.StreamReader
fileReader = My.Computer.FileSystem.OpenTextFileReader("\\192.168.10.1\test\untitle.txt")
Dim stringReader As String
stringReader = fileReader.ReadLine()
MsgBox(stringReader).
But how about additional writing to enter the username and password into the script when the computer that I read using the username and password?