Click here to Skip to main content
15,881,413 members
Articles / Desktop Programming / Win32
Article

Shadow Copying of Applications

Rate me:
Please Sign up or sign in to vote.
4.88/5 (43 votes)
16 Oct 2008CPOL 111.4K   1.3K   128   30
Shadow copied applications aren't locked by the loader, so they can be updated/substituted at runtime.

Introduction

Running an application shadow copied can be useful for purposes like auto-updating. On normal execution, the assembly gets locked by the loader and can't be substituted while it's executed. On shadow copying, all assemblies referenced are copied to a cache path, and loaded/executed from this location - so the assemblies aren't locked, and can be changed.

Background

This technique is well known in ASP.NET, but on the application side, there's little information (even on MSDN). Therefore, I'd like to share my findings.

Using the Code

For executing an assembly from the cache path, we have to use a loader/bootstrapper. This little program creates a domain from which the application gets loaded. That means, when we want to start the application, we have to start the loader that loads the application for us.

The code for the application and all the referenced assemblies need no change.

The code for the loader is:

C#
using System;
using System.IO;

namespace Loader
{
    static class Program
    {
        [LoaderOptimization(LoaderOptimization.MultiDomainHost)]
        [STAThread]
        static void Main()
        {
            /* Enable shadow copying */

            // Get the startup path. Both assemblies (Loader and
            // MyApplication) reside in the same directory:
            string startupPath = Path.GetDirectoryName(
				System.Reflection.Assembly
				.GetExecutingAssembly().Location);

            // cache path = directory where the assemblies get
            // (shadow) copied:
            string cachePath = Path.Combine(
                startupPath,
                "__cache");
            string configFile = Path.Combine(
                startupPath,
                "MyApplication.exe.config");
            string assembly = Path.Combine(
                startupPath,
                "MyApplication.exe");

            // Create the setup for the new domain:
            AppDomainSetup setup = new AppDomainSetup();
            setup.ApplicationName = "MyApplication";
            setup.ShadowCopyFiles = "true"; // note: it isn't a bool
            setup.CachePath = cachePath;
            setup.ConfigurationFile = configFile;

            // Create the application domain. The evidence of this
            // running assembly is used for the new domain:
            AppDomain domain = AppDomain.CreateDomain(
                "MyApplication",
                AppDomain.CurrentDomain.Evidence,
                setup);

            // Start MyApplication by executing the assembly:
            domain.ExecuteAssembly(assembly);

            // After the MyApplication has finished clean up:
            AppDomain.Unload(domain);
            Directory.Delete(cachePath, true);
        }
    }
}

Points of Interest

This simple program gives us the possibility to easily create auto updates (that replace the application's assembly).

History

  • 07 October 2008 - Initial release
  • 14 October 2008 - Article updated

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Foidl Günther
Austria Austria
Engineer in combustion engine development.
Programming languages: C#, FORTRAN 95, Matlab

FIS-overall worldcup winner in Speedski (Downhill) 2008/09 and 2009/10.

Comments and Discussions

 
GeneralRe: Environment.CurrentDirectory is wrong... Pin
Günther M. FOIDL14-Oct-08 21:18
Günther M. FOIDL14-Oct-08 21:18 
GeneralOn deleting... Pin
pikipoki9-Oct-08 4:24
pikipoki9-Oct-08 4:24 
GeneralRe: On deleting... Pin
Günther M. FOIDL9-Oct-08 4:44
Günther M. FOIDL9-Oct-08 4:44 
GeneralRe: On deleting... Pin
dejanstanic9-Oct-08 8:08
dejanstanic9-Oct-08 8:08 
GeneralMultiple instances and updating multiple files Pin
TobiasP18-Oct-08 0:26
TobiasP18-Oct-08 0:26 
GeneralRe: Multiple instances and updating multiple files Pin
Günther M. FOIDL18-Oct-08 2:01
Günther M. FOIDL18-Oct-08 2:01 
GeneralNice Pin
Caio Kinzel Filho7-Oct-08 8:38
Caio Kinzel Filho7-Oct-08 8:38 
GeneralRe: Nice Pin
Günther M. FOIDL7-Oct-08 8:47
Günther M. FOIDL7-Oct-08 8:47 
GeneralRe: Nice Pin
Caio Kinzel Filho7-Oct-08 9:12
Caio Kinzel Filho7-Oct-08 9:12 
Thanks!

Intelligence is almost useless for those who have nothing else!

Email: caiokf@gmail.com

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.