Question:
How can I copy a file that is on another machine of the network via E3?
Solution:
This can only be done via scripts.
Example (script being executed at a button’s Click event):
Argument = “cmd /C Copy ” & “\\NameOfComputer\NameOfFolder\NameOfFile.txt” & ” ” & “D:\”
‘Copy and pastes the file:
Set ObjShell = CreateObject(“WScript.Shell”)
Call ObjShell.Run(Argument, 0, True)