I'm using a batchfile for backup of the Backend.
i'm using the following command to copy the backend folder to the desired location:
I want that each time the back end to be copied witth a different name e.g Timt-DATE-MyDB
how can i do this using a batch file.
i'm using the following command to copy the backend folder to the desired location:
xcopy "E:\MyDB" "f:\Backups\MyDB\" /f /r /E /H /K /Y /I /C /D
I want that each time the back end to be copied witth a different name e.g Timt-DATE-MyDB
how can i do this using a batch file.