F5F Stay Refreshed Software Operating Systems Searching for Windows sync tools available.

Searching for Windows sync tools available.

Searching for Windows sync tools available.

S
Saudi54
Member
238
07-20-2016, 07:49 PM
#1
Hello, how are you? A friend recently switched from Mac to PC and is looking for File Sync tools, such as Superduper or Carbon Copy Cloner on OSX. He wants a program that syncs drives and folders for backup, focusing on incremental updates to the target volume. Are there any Windows options available? Thanks!
S
Saudi54
07-20-2016, 07:49 PM #1

Hello, how are you? A friend recently switched from Mac to PC and is looking for File Sync tools, such as Superduper or Carbon Copy Cloner on OSX. He wants a program that syncs drives and folders for backup, focusing on incremental updates to the target volume. Are there any Windows options available? Thanks!

D
dirty_donut
Member
135
08-09-2016, 01:58 AM
#2
Microsoft's SyncToy is a playful tool designed to help users understand how data synchronization works across devices.
D
dirty_donut
08-09-2016, 01:58 AM #2

Microsoft's SyncToy is a playful tool designed to help users understand how data synchronization works across devices.

C
Cusack
Junior Member
47
08-13-2016, 08:12 PM
#3
Check out this resource: http://alternativeto.net/software/carbon-copy-cloner/ I recommend starting with Clonezilla. http://clonezilla.org/
C
Cusack
08-13-2016, 08:12 PM #3

Check out this resource: http://alternativeto.net/software/carbon-copy-cloner/ I recommend starting with Clonezilla. http://clonezilla.org/

E
EndShulker
Member
131
08-15-2016, 09:20 AM
#4
BitTorrent Sync could work well depending on your needs. It’s popular and offers features like automatic updates, but you should check its security and compatibility before deciding.
E
EndShulker
08-15-2016, 09:20 AM #4

BitTorrent Sync could work well depending on your needs. It’s popular and offers features like automatic updates, but you should check its security and compatibility before deciding.

_
_CowMaster_
Junior Member
2
08-22-2016, 07:25 AM
#5
Control Panel All Items Sync Center windows are available, but I haven’t used them yet. I’m not just following a suggestion—I want something real users rely on.
_
_CowMaster_
08-22-2016, 07:25 AM #5

Control Panel All Items Sync Center windows are available, but I haven’t used them yet. I’m not just following a suggestion—I want something real users rely on.

P
PvtStoner
Senior Member
599
08-22-2016, 11:15 AM
#6
I rely on a tool named FreeFileSync to manage drives and folders. It offers numerous settings such as Carbon Copy Cloner and incremental backup features. Initially, when I first obtained it from Cnet or Sourceforge, it attempted to install conduit (a checkbox was available to skip this), but using the mirror at fosshub avoids any installation beyond the program itself. There are many other excellent choices available; I've experimented with synctoy, though it sometimes didn't function perfectly. This version worked smoothly on Windows 7, and I haven't tried it again since switching to FreeFileSync.
P
PvtStoner
08-22-2016, 11:15 AM #6

I rely on a tool named FreeFileSync to manage drives and folders. It offers numerous settings such as Carbon Copy Cloner and incremental backup features. Initially, when I first obtained it from Cnet or Sourceforge, it attempted to install conduit (a checkbox was available to skip this), but using the mirror at fosshub avoids any installation beyond the program itself. There are many other excellent choices available; I've experimented with synctoy, though it sometimes didn't function perfectly. This version worked smoothly on Windows 7, and I haven't tried it again since switching to FreeFileSync.

S
SIGNORET
Member
160
08-22-2016, 04:55 PM
#7
Windows offers a built-in utility named Robocopy. It facilitates transferring files between locations, duplicating directories to distant sites, and more. You can configure a Windows Task Scheduler to automate daily tasks such as copying C:\Somefolder to \\someserver\Somefolder or moving files from X:\SomeOtherFolder to \\someserver\someotherfolder. Two useful cases: one involves backing up Microsoft SQL Server with nightly snapshots at 5 PM to a specific path, while another uses daily cleanup jobs to retain only the latest four database files on disk. A Task Scheduler entry at 6 PM would execute: robocopy "C:\Program Files\Microsoft SQL Server\MSSQL10_50.SQL2008R2\MSSQL\Backup\MyDatabase" "\\backupserver\MSSQL\MyDatabase" /MIR /R:0 /LOG+:c:\backup\robocopy.txt This ensures the backup mirror stays synchronized with the local database. You can also save logs to C:\MyDiary daily at 4 PM using a similar command. In another setup, robocopy commands can be embedded in batch scripts for manual execution whenever needed. It works both remotely and locally without additional constraints.
S
SIGNORET
08-22-2016, 04:55 PM #7

Windows offers a built-in utility named Robocopy. It facilitates transferring files between locations, duplicating directories to distant sites, and more. You can configure a Windows Task Scheduler to automate daily tasks such as copying C:\Somefolder to \\someserver\Somefolder or moving files from X:\SomeOtherFolder to \\someserver\someotherfolder. Two useful cases: one involves backing up Microsoft SQL Server with nightly snapshots at 5 PM to a specific path, while another uses daily cleanup jobs to retain only the latest four database files on disk. A Task Scheduler entry at 6 PM would execute: robocopy "C:\Program Files\Microsoft SQL Server\MSSQL10_50.SQL2008R2\MSSQL\Backup\MyDatabase" "\\backupserver\MSSQL\MyDatabase" /MIR /R:0 /LOG+:c:\backup\robocopy.txt This ensures the backup mirror stays synchronized with the local database. You can also save logs to C:\MyDiary daily at 4 PM using a similar command. In another setup, robocopy commands can be embedded in batch scripts for manual execution whenever needed. It works both remotely and locally without additional constraints.