I am trying to open a file on a remote computer. The computer I am trying to access has a Domain/Username/Password that are required. I am unable to find out how to use the credentials to access the file.
I don't have much, but I have this so far.
Dim username = "domain\username"
Dim Pass = "password "
Dim path As String = "\\" & FIP & "\C$\Test.log "
Process.Start(path)
I cannot figure out how to incorporate the username/pass into the path to run it.