Click here to Skip to main content
15,879,535 members
Articles / Programming Languages / Visual Basic
Article

Quietly run Microsoft's SyncToy

Rate me:
Please Sign up or sign in to vote.
4.59/5 (10 votes)
26 Oct 20062 min read 110.1K   495   36   36
A console application that runs SyncToy quietly by avoiding the user interface.

Introduction

Microsoft's SyncToy has really been a godsend. I use it to syncrhonize files between two load balanced W2K3 servers that run websites. Despite what MS says, it also works on W2K3 as well as XP.

I had initially set it up as a scheduled task to run all by itself. However, when you do this, it must have a logged on user for the UI. This was unacceptable, and I looked for a suitable replacement... I found that there is a file installed with SyncToy called SyncToyEngine.dll. Thanks Microsoft for seperating the UI from the logic! This DLL is a .NET 2.0 assembly, so you can include it in any .NET project you want. Luckily, it didn't take too long to figure out how it worked either! Below is my code for a console application that simply calls the SyncToy APIs...

Prerequisites

Before using this code, it is assumed that you've already used the given UI to set up a folder pair. When you do this, the configuration is saved into a C:\Documents and Settings\[username]\My Documents\SyncToyData\SyncToyDirPairs.bin file. The file is actually a binary serialized object of type SyncToy.SyncEngineConfig. Again, thanks MS for making it so easy!!! Also in this directory, SyncToy stores the snapshot files of each of the left and right directories.

The code

  1. This is optional, but Dim WithEvents a SyncEngine object. This will allow you to view the events when files are moved.
    VB
    Dim WithEvents se1 As SyncToy.SyncEngine
  2. Next, get the configuration. (I used a command parameter to pass this in.)
    VB
    Dim sc As SyncToy.SyncEngineConfig
    Dim db As New System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
    Dim sr As New IO.StreamReader(Command.Replace("""", ""))
    sc = CType(db.Deserialize(sr.BaseStream), SyncToy.SyncEngineConfig)
    sr.Close()
  3. Create the new SyncEngine with the configuration.
    VB
    se1 = New SyncToy.SyncEngine(sc)
  4. Now, you must call preview() for the API to create its own SyncActions. The preview actually looks at both files and defines what the actions are to be done, if any.
    VB
    se1.Preview()
  5. Finally, run the sync() command...
    VB
    se1.Sync()

That's it! Good luck. Download the attached source file if you want a little more detail on error handling and notifying the user what's happening.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
I've been writing software applications since the early 90's from ASP and VB5 to C# and ASP.NET. I am currently working on law enforcement and criminal justice applications delivered over the web. I've always been astounded by the fact that the only 2 industries that refer to customers as "users" are narcotics and software development. Wink | ;-)

Comments and Discussions

 
GeneralUsing sync toy Windows 7 64bit Pin
SachinHingwe22-Oct-10 0:29
SachinHingwe22-Oct-10 0:29 
GeneralDifferent SyncToy configuration file location Pin
Marek Grzenkowicz30-Aug-10 0:07
Marek Grzenkowicz30-Aug-10 0:07 
GeneralRe: Different SyncToy configuration file location Pin
preydator4-Oct-10 20:35
preydator4-Oct-10 20:35 
Generalsame problem Pin
Noman Siddiqui4-Mar-10 9:54
Noman Siddiqui4-Mar-10 9:54 
GeneralPreview() and Sync() does not work Pin
Moskus27-Aug-09 22:54
Moskus27-Aug-09 22:54 
GeneralRe: Preview() and Sync() does not work Pin
filthyslider3422-Feb-10 9:00
filthyslider3422-Feb-10 9:00 
QuestionSyncToyDirPairs.bin analyzing from within vbscript (WSH)? Possible? Pin
Member 362384629-Jul-09 5:38
Member 362384629-Jul-09 5:38 
AnswerRe: SyncToyDirPairs.bin analyzing from within vbscript (WSH)? Possible? Pin
Domenic29-Jul-09 8:08
Domenic29-Jul-09 8:08 
GeneralRe: SyncToyDirPairs.bin analyzing from within vbscript (WSH)? Possible? Pin
Member 362384629-Jul-09 22:58
Member 362384629-Jul-09 22:58 
QuestionProblems with the source Pin
josemandominguez4-Mar-09 9:09
josemandominguez4-Mar-09 9:09 
GeneralBiffs on Vista at .Preview Pin
barry_t2-Feb-09 17:53
barry_t2-Feb-09 17:53 
QuestionUpdating Details Pin
hblue14-Apr-08 3:56
hblue14-Apr-08 3:56 
GeneralAuto Sync Pin
jtordoya8-May-07 9:42
jtordoya8-May-07 9:42 
GeneralNOW how about FTP Pin
codegalaxy11-Apr-07 2:39
codegalaxy11-Apr-07 2:39 
QuestionWrite SyncToy Config File Pin
Curt McNamee15-Dec-06 8:28
Curt McNamee15-Dec-06 8:28 
AnswerRe: Write SyncToy Config File Pin
Domenic18-Dec-06 5:11
Domenic18-Dec-06 5:11 
GeneralRe: Write SyncToy Config File Pin
Curt McNamee19-Dec-06 20:51
Curt McNamee19-Dec-06 20:51 
GeneralRe: Write SyncToy Config File Pin
Domenic20-Dec-06 2:13
Domenic20-Dec-06 2:13 
GeneralRe: Write SyncToy Config File Pin
Curt McNamee20-Dec-06 10:32
Curt McNamee20-Dec-06 10:32 
AnswerRe: Write SyncToy Config File Pin
preydator4-Oct-10 19:30
preydator4-Oct-10 19:30 
QuestionHow do I get it to process all the folder pairs Pin
AToad3-Nov-06 11:20
AToad3-Nov-06 11:20 
AnswerRe: How do I get it to process all the folder pairs Pin
Domenic16-Nov-06 2:58
Domenic16-Nov-06 2:58 
AnswerRe: How do I get it to process all the folder pairs Pin
Shaggy Wolf5-Dec-06 11:41
Shaggy Wolf5-Dec-06 11:41 
GeneralRe: How do I get it to process all the folder pairs Pin
AToad5-Dec-06 17:21
AToad5-Dec-06 17:21 
GeneralRe: How do I get it to process all the folder pairs Pin
Domenic18-Dec-06 5:12
Domenic18-Dec-06 5:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.