I am currently using a batch file that uses the following code
@ECHO off
XCOPY /y C:\ProCal\Certificates\ProResDB.mdb H:\onsite\Imports\
@ECHO on
to copy one file (ProResDB.mdb) from the folder ‘C:\ProCal\Certificates\’ to a the folder ‘H:\onsite\Imports\’. How can I add the current date and a predefined initial to the filename of the copied file?
Example: ProResDBddmmyyXX.mdb
Alternatively if this can be done in VBScript, feel free to offer suggestions of how to script that.