KB-32178: Copying files from another machine on the network via E3.

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)

Print Friendly, PDF & Email

Este artigo foi útil? Was this helpful?

Classificação média - Average rating 0 / 5. Count: 0

Deixe seu Comentário

Seu endereço de e-mail não será publicado. Campos marcados com asterisco são obrigatórios *