Option Explicit
Dim strSource, strDest, strFolderName, strFolderPath
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
strSource = "\\client\c$\pawpalace"
strDest = "\\databases\access2015\pawpalace"
strFile = "YourFile.png"
objFSO.CopyFile strSource & "\" & strFile, strDest & "\"
WScript.Echo strSource & "\" & strFile & " copied to " & strDest & "\"
/gustav
Deploy and update a Microsoft Access application in a Citrix environment
It should be nothing more than reduce it to the copying part and reverse the local and remote folder.
/gustav