Click here to Skip to main content
15,881,044 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

 
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 

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.