Try to copy the script:
Copying a File
Demonstration script that uses the FileSystemObject to copy a file.
Script must be run on the local computer.
Const OverwriteExisting = True
Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.CopyFile "C:\FSO\ScriptLog.txt" , "D:\Archive\",
OverwriteExisting
source:
http://www.activexperts.com