This simple VBScript can be very useful if you have files that need to be constantly copied to another machine or location. You can add as many files as you like and even copy a file to multiple locations:
Dim FSO
Set FSO = CreateObject("Scripting.FileSystemObject")
FSO.CopyFile "C:\path\to\file.ext", "S:\path\to\destination\file.ext", true
The very last line of code has 3 arguments:
1) The destination and file that will be copied.
2) The destination and filename that will be created.
3) "true" allows for file overwrites, the default value is false so just remove this argument if you do not wish to overwrite existing files.