Ho 250 g8 ssd mirror?

That's easy enough to do using Robocopy and Task Scheduler. I have a batch file that runs every night to mirror my data drive to another inside the PC and to my NAS. Let me know if you'd like the details.
 
Robocopy is a command line program and needs a lot of parameters to make it work. It is possible to make it copy a whole drive in one go but it can get hung up on system folders like the recycle bin so I have a line in the batch file for each top-level folder. This a sample line from one of my batch files:

c:\windows\syswow64\robocopy e:\videos g:\videos *.* /COPY:dAT /DCOPY:T /FFT /MIR /R:5 /W:5 /MT /NP /LOG:videos.log

Open a command prompt, type in robocopy /help, work through the options and tell me whether I should have /NOCOPY and /J in the above line. ;)
 
Last edited:
Am going be honest I want something a little more plug and play.
With less problems and a much easier user interface.

I'm now looking at macrium reflect. If you pay to unlock all the features you can set a day and time and it will just clone the drive
 
Back
Top Bottom