Welcome Guest! To access all forums & features, please register an account or sign-in. → Why register?



Folder/share replication


4 replies to this topic - - - - -

#1 DarkHorizons

    Neowinian

  • 15 posts
  • Joined: 04-February 11

Posted 30 April 2012 - 18:31

Hi,

I am wondering if anyone knows of an easy, and preferably free peice of software I can use to replicate the contents of a folder according to a schedule. Basically, I want to replicate data on a shared drive, to another shared drive on my network using my desktop as the transfer medium as I'm having great difficulty getting a LinkStation and TeraStation communicating with each other.


#2 +BudMan

    Neowinian Super Star

  • 23,797 posts
  • Joined: 04-July 02
  • Location: Schaumburg, IL
  • OS: Win7, Vista, 2k3, 2k8, XP, Linux, FreeBSD, OSX, etc. etc.

Posted 01 May 2012 - 20:42

robocopy \\computername\source \\othercomputername\destination /mir

Its that simple!

or if you have them mapped to drive letters already

robocopy x:\sourcedir y:\destdir /mir

And next time you run it, it will only copy over changed or new files. And delete files that have are no longer in the source.

edit: robocopy is built into vista or w7, you can add it to xp if still running that. just google robocopy xp.

#3 g0dzilla

    Neowinian²

  • 168 posts
  • Joined: 10-April 12
  • Location: Sydney, Australia
  • OS: Windows 7 x64 Ultimate, Windows 8 CP x64, and Mac OSX Lion
  • Phone: Jailbroken iPhone 4 GSM iOS 5.1.1

Posted 02 May 2012 - 14:21

+1 to this ^

You can then create batch scripts and create scheduled tasks in Windows to further automate this!

Nice and simple just using native Windows (Vista and Win 7 as pointed out above) tools and no third-party apps to complicate things...

#4 +BudMan

    Neowinian Super Star

  • 23,797 posts
  • Joined: 04-July 02
  • Location: Schaumburg, IL
  • OS: Win7, Vista, 2k3, 2k8, XP, Linux, FreeBSD, OSX, etc. etc.

Posted 02 May 2012 - 14:40

you could even just use /mon or /mot parameters to have it sync on changes/new files or every so many minutes. Sure you could create a task to do it on a schedule as well. or just create a shortcut to command that runs it on demand from simple click, etc.

I agree - why add software when the functionality you seek is right there part of the os.

#5 xendrome

    In God We Trust; All Others We Monitor

  • 5,867 posts
  • Joined: 05-December 01
  • OS: Windows 8 Pro x64

Posted 02 May 2012 - 14:42

xcopy c:\source d:\destination /c/h/e/f/r/s/v/k/y also works.. in a batch file, scheduled of course