- Follow via:
- RSS
- Email Alert
Question
Answers (3)
1
Vote
Would be easier in a batch file
Just a series of copy commands
30th Aug 2011
0
Votes
q&a
how i dont know batch files
30th Aug 2011
1
Vote
Well you can google how to create a new batch file
And your commands in the batch file would look something like this.
xcopy C:\ D:\ /c /h /e /r /y /k /Q
That says to copy and overrite all files from the C drive, to the D drive.
You can do this several times
xcopy D:\ E:\ /c /h /e /r /y /k /Q
xcopy C:\ E:\ /c /h /e /r /y /k /Q
xcopy C:\ D:\ /c /h /e /r /y /k /Q
That says to copy and overrite all files from the C drive, to the D drive.
You can do this several times
xcopy D:\ E:\ /c /h /e /r /y /k /Q
xcopy C:\ E:\ /c /h /e /r /y /k /Q
31st Aug 2011

































