• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Free backup/sync software?

Stellar

[H]ard|Gawd
Joined
Jun 29, 2003
Messages
1,975
I recently bought a WD Netcenter NAS, which is working great however it doesn't come with any sort of backup software.

Basically I'm looking to run nightly backups of my documents, photos, and music from my desktop rig to the mapped network drive, no encryption or compression needed.

I would (obviously) prefer free or open source but I would be willing to pay for something if it were good enough.

So far I've just been using the Microsoft PowerToy "SyncToy" to sync the document and photo folders but don't see any way to schedule that on a nightly basis. It also lacks any useful options.
 
Use ROBOCOPY with task scheduler.

Copy robocopy.exe to %systemroot%/system32 folder

Paste the code below in a .cmd or .bat file:

Code:
@ECHO OFF
SETLOCAL

SET _source=\\FileServ1\e$\users

SET _dest=\\FileServ2\e$\BackupUsers

SET _what=/COPYALL /B /SEC /MIR
:: /COPYALL :: COPY ALL file info
:: /B :: copy files in Backup mode.
:: /SEC :: copy files with SECurity
:: /MIR :: MIRror a directory tree

SET _options=/R:0 /W:0 /LOG:MyLogfile.txt /NFL /NDL
:: /R:n :: number of Retries
:: /W:n :: Wait time between retries
:: /LOG :: Output log file
:: /NFL :: No file logging
:: /NDL :: No dir logging

ROBOCOPY %_source% %_dest% %_what% %_options%

Use task scheduler to set the file to run nightly.

Reference: http://www.ss64.com/nt/robocopy.html
 
Another vote for Karen Replicator here. I've been using it for a year on several computers, and it has never let me down.
 
Back
Top