need software that can backup files from network share to usb hdd

Associate
Joined
21 Jul 2005
Posts
1,416
have files stored on a NAS and wanted a way of backing them up onto a usb hdd, windows xp backup seems to do this, however, oddly, win7 ultimate's backup doesnt let me select stuff on the network.

disappointingly acronis true image 2011 doesnt let me do what i need either.

can anyone recommend me an app that will let me back up files stored on the network (either by drive letter or unc path/ip address) and save it to a usb hdd?

thanks!
 
Code:
robocopy "\\server\share" "E:\USB\Backups" /S /MIR

Put that in a .bat and you can run it whenever or even schedule it. Robocopy is already a part of Windows 7.

/S tells robocopy to copy subfolders.
/MIR tells robocopy to mirror the source at the destination. New files are copied, deleted files in source are deleted in destination.
 
correct me if im wrong but these seem to be "sync" type programs whereas im looking for something that can archive/compress into a file and potentially do incremental backups.
 
Back
Top Bottom