cmd
List all contents with the tag cmd
Windows - Synchronizing for Dummies
If you want to synchronize your backup and your primary hard disk, you can do it very easy with just one single command.
I use this command to synchronize my music directory on an external backup disk with my laptop or my pc.
c:\>xcopy /D /E /Y F:\music C:\data\music
This xcopy command copies only those files from F:\music whose source time is newer than the destination time on c:\data\music (D option) and it does it recursively (E option) without prompting you (F option).
If you want to know more about xcopy check the man pages:
c:\> help xcopy
Read Full Story »
Tags:
tech scripts cmd Comment On/Off »