

InterviewSolution
1. |
Solve : Creating a .bat backup program not working? |
Answer» I am trying to execute a backup PROGRAM using notepad then saving the file as a .bat so the at it will execute / run the backup program to save my content to another hard drive. I tried the original code and it WORKED fine it transferred the content in c:\testsource to c:\testbackup when i try to change the destination folder to another folder and tried the program again it did not transfer the content in c:\testbackup to the other folder. Can somebody show me what i am doing wrong. Here is the folder that i want to transfer to C:\Documents and Settings\HP_Owner\My Documents\My MUSIC Code: [Select]xcopy c:\testsource "C:\Documents and Settings\HP_Owner\My Documents\My Music" /m /e /y if your source folder also contains quotes you'll need to place quotes around it in the same manner. |
|