This is my first post so please excuse my ignorance. I know more about hardware than I do software and I haven't worked with batch files outside of making simple ones that shutdown a computer and display a message. (When I was young it was funny to watch people click on IE and have their computer shutdown)
I know how to create the batch file, I am just not sure about the text that should go into it. I want to copy My documents and setting from C: to D: then copy all of D: to E:
If I understand correctly you would start something like this:
ECHO My Documents Backup
xcopy C:\Users*.* D:\Backup /c /q /g /h /r /u
Is this close?