This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!
Need a batch file which does the following. Copies all files from c:\folder1 to c:\folder2, then moves all the files from c:\folder1 to c:\folder1\archive.
I can do the copying process but not the moving part any ideas?
not sure move does folders, only files. it may work if you have no subfolders.
Alternatively rar them via cmd line to the archive & then delete
c:\rar.exe a -pPASSWORD -dh c:\destination.rar c:\folder1\*.* is what we use