Developing a C# .NET 2.0 WinForm Application. Need the application to close and restart itself.

Application.Restart();

The above method has proven to be unreliable.

What is a better way to restart the application?

link|improve this question

3  
I'm curious about the need to restart your app. I've never thought about that need before What are your circumstances? – JeffH Apr 30 '09 at 13:55
Our particular circumstance - a media player application which is supposed to run through some images and flash content in a loop. Should run for days and days without a machine restart, and there is no keyboard/mouse so no user interaction. If the program crashes (unhandled exception), need to restart the program, not exit out or display an error. stackoverflow.com/questions/773768/… See that for why the program keeps having exceptions I can't prevent. :( – Adam Nofsinger Apr 30 '09 at 17:23
Great Question - had the exact same problem! – JohnIdol Jan 7 '10 at 11:17
In the end, a much better solution for our application was to develop a small Watchdog application that gets started (if not running already) from the main application. The watchdog simply checks every 10 seconds or so to see if the main application still has a process running, and if it doesn't, it starts one. Simple, elegant, and much sturdier than trying to restart from the main app. – Adam Nofsinger Feb 23 '11 at 14:33
feedback

12 Answers

up vote 14 down vote accepted

Unfortunately you can't use Process.Start() to start an instance of the currently running process. According to the Process.Start() docs: "If the process is already running, no additional process resource is started..."

This technique will work fine under the VS debugger (because VS does some kind of magic that causes Process.Start to think the process is not already running), but will fail when not run under the debugger. (Note that this may be OS-specific - I seem to remember that in some of my testing, it worked on either XP or Vista, but I may just be remembering running it under the debugger.)

This technique is exactly the one used by the last programmer on the project on which I'm currently working, and I've been trying to find a workaround for this for quite some time. So far, I've only found one solution, and it just feels dirty and kludgy to me: start a 2nd application, that waits in the background for the first application to terminate, then re-launches the 1st application. I'm sure it would work, but, yuck.

Edit: Using a 2nd application works. All I did in the second app was:

    static void RestartApp(int pid, string applicationName )
    {
        // Wait for the process to terminate
        Process process = null;
        try
        {
            process = Process.GetProcessById(pid);
            process.WaitForExit(1000);
        }
        catch (ArgumentException ex)
        {
            // ArgumentException to indicate that the 
            // process doesn't exist?   LAME!!
        }
        Process.Start(applicationName, "");
    }

(This is a very simplified example. The real code has lots of sanity checking, error handling, etc)

link|improve this answer
I agree with HiredMind, and I actually went with the same "Watchdog program" implementation myself shortly after writing the answer. Sorry, should have come back here and updated. I wouldn't think it should feel too horribly ugly/yucky/dirty. The Watchdog program pattern is pretty widely used. – Adam Nofsinger Sep 29 '09 at 19:30
feedback

I had the same exact problem and I too had a requirement to prevent duplicate instances - I propose an alternative solution to the one HiredMind is proposing (which will work fine).

What I am doing is starting the new process with the processId of the old process (the one that triggers the restart) as a cmd line argument:

// Shut down the current app instance.
Application.Exit();

// Restart the app passing "/restart [processId]" as cmd line args
Process.Start(Application.ExecutablePath, "/restart" + Process.GetCurrentProcess().Id);

Then when the new app starts I first parse the cm line args and check if the restart flag is there with a processId, then wait for that process to Exit:

if (_isRestart)
{
   try
   {
      // get old process and wait UP TO 5 secs then give up!
      Process oldProcess = Process.GetProcessById(_restartProcessId);
      oldProcess.WaitForExit(5000);
   }
   catch (Exception ex)
   { 
      // the process did not exist - probably already closed!
      //TODO: --> LOG
   }
}

I am obviously not showing all the safety checks that I have in place etc.

Even if not ideal - I find this a valid alternative so that you don't have to have in place a separate app just to handle restart.

link|improve this answer
IMHO that there is a neater solution to this. I also have a requirement to have single instance and allow the user to restart the application (e.g. when it crashes). I nearly implemented your solution, however it occurred to me that it would be better to simply add a different command line argument that allows multiple instances to run. – Dennis Oct 31 '11 at 9:31
mmm, you're reversing the logic - I like it! Only issue is that if someone figures out the cmd line argument that allows multiple instances strange stuff could happen :D – JohnIdol Nov 1 '11 at 0:02
Well, I was fortunate that it was a feature that users had been requesting so it was WIN-WIN. I would prefer they 'find' an /allowMultipleInstances flag than the rather strange /restart one. – Dennis Nov 1 '11 at 0:05
Yeah if you allow for multiple instances that is a better solution for sure :) – JohnIdol Nov 1 '11 at 10:16
feedback

You are forgetting the command-line options/parameters that were passed in to your currently running instance. If you don't pass those in, you are not doing a real restart. Set the Process.StartInfo with a clone of your process' parameters, then do a start.

For example, if your process was started as myexe -f -nosplash myfile.txt, your method would only execute myexe without all those flags and parameters.

link|improve this answer
I updated my answer to address this issue. – Adam Nofsinger Apr 23 '09 at 15:13
1  
-1 This is not an answer - it should be a comment. – EMP Feb 23 '11 at 3:12
feedback

Start/Exit Method

// Get the parameters/arguments passed to program if any
string arguments = string.Empty;
string[] args = Environment.GetCommandLineArgs();
for (int i = 1; i < args.Length; i++) // args[0] is always exe path/filename
    arguments += args[i] + " ";

// Restart current application, with same arguments/parameters
Application.Exit();
System.Diagnostics.Process.Start(Application.ExecutablePath, arguments);

This seems to work better than Application.Restart();

Not sure how this handles if your program protects against multiple instance. My guess is you would be better off launching a second .exe which pauses and then starts your main application for you.

link|improve this answer
1  
That might not work if application is protected from multiple instances. – majkinetor Apr 23 '09 at 10:34
@majkinetor - Noted in updated answer to question. – Adam Nofsinger Apr 23 '09 at 15:23
Yah, I have a feeling calling Application.Exit() only causes some message to be added to a queue somewhere that needs to be pumped, so the second bit of code here in my answer probably would indeed not work. – Adam Nofsinger Apr 27 '09 at 21:07
Unfortunately this technique doesn't work (I wish it did! It's so much more simple than my solution). It will work inside the Visual Studio debugger but not in practice. See my answer for a kludgy solution that works outside the debugger. – HiredMind Sep 9 '09 at 20:15
HiredMind might be right. I ended up going with a Watchdog pattern solution. – Adam Nofsinger Feb 10 '10 at 16:40
feedback

If you are in main app form try to use

System.Diagnostics.Process.Start( Application.ExecutablePath); // to start new instance of application
this.Close(); //to turn off current app
link|improve this answer
-1 too similar to other answers – John Saunders Sep 17 '10 at 19:34
It is similar, but different. Application.Exit didn't work form me, and this.Close() did the job. – Darqer Sep 18 '10 at 19:28
feedback

A much simpler approach that worked for me is:

Application.Restart();
Environment.Exit();

This preserves the command-line arguments and works despite event handlers that would normally prevent the application from closing.

The Restart() call tries to exit, starts a new instance anyway and returns. The Exit() call then terminates the process without giving any event handlers a chance to run. There is a very brief period in which both processes are running, which is not a problem in my case, but may be in other cases.

link|improve this answer
feedback

You could also use Restarter.

link|improve this answer
feedback

I might be late to the party but here is my simple solution and it works like a charm with every application I have:

        try
        {
            //run the program again and close this one
            Process.Start(Application.StartupPath + "\\blabla.exe"); 
            //or you can use Application.ExecutablePath

            //close this one
            Process.GetCurrentProcess().Kill();
        }
        catch
        { }
link|improve this answer
feedback

I had a similar problem, but mine was related to unmanageable memory leak that I couldn't find on an app that has to run 24/7. With the customer I agreed that safe time to restart the app was 03:00AM if the memory consumption was over the defined value.

I tried Application.Restart, but since it seems to use some mechanism that starts new instance while it is already running, I went for another scheme. I used the trick that file system handles persist until process that created them dies. So, from The Application, i dropped the file to the disk, and didn't Dispose() the handle. I used the file to send 'myself' executable and starting directory also (to add flexibility).

Code:

_restartInProgress = true;
string dropFilename = Path.Combine(Application.StartupPath, "restart.dat");
StreamWriter sw = new StreamWriter(new FileStream(dropFilename, FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite));
sw.WriteLine(Application.ExecutablePath);
sw.WriteLine(Application.StartupPath);
sw.Flush();
Process.Start(new ProcessStartInfo
{
    FileName = Path.Combine(Application.StartupPath, "VideoPhill.Restarter.exe"),
    WorkingDirectory = Application.StartupPath,
    Arguments = string.Format("\"{0}\"", dropFilename)
});
Close();

Close() at the end would initiate app shutdown, and file handle I used for StreamWriter here would be held open until process really dies. Then...

Restarter.exe comes into action. It TRIES to read the file in exclusive mode, preventing it to gain access until main app wasn't dead, then starts main app, deletes the file and exists. I guess that it can't be simpler:

static void Main(string[] args)
{
    string filename = args[0];
    DateTime start = DateTime.Now;
    bool done = false;
    while ((DateTime.Now - start).TotalSeconds < 30 && !done)
    {
        try
        {
            StreamReader sr = new StreamReader(new FileStream(filename, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite));
            string[] runData = new string[2];
            runData[0] = sr.ReadLine();
            runData[1] = sr.ReadLine();
            Thread.Sleep(1000);
            Process.Start(new ProcessStartInfo { FileName = runData[0], WorkingDirectory = runData[1] });
            sr.Dispose();
            File.Delete(filename);
            done = true;
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message);
        }
        Thread.Sleep(1000);
    }
}
link|improve this answer
feedback

Try this code

    bool appNotRestarted = true;

this code must also be in the function

    if (appNotRestarted == true)
    {
        appNotRestarted = false;
        Application.Restart();
        Application.ExitThread();

    }
link|improve this answer
feedback

How about create a bat file, run the batch file before closing, and then close the current instance.

The batch file does this:

  1. wait in a loop to check whether the process has exited.
  2. start the process.
link|improve this answer
Which is a poor man's watchdog application, which I describe a little more detailed above. The key benefit of a real watchdog application is that it will even handle if the original app dies without being able to spin something off. – Adam Nofsinger Dec 15 '11 at 3:01
@AdamNofsinger I see now. I missed that comment. You might want to edit your post with that solution you use. – AZ. Dec 15 '11 at 18:00
feedback

Here's my 2 cents:

The sequence Start New Instance->Close Current Instance should work even for the applications that don't allow running multiple copies simultaneously as in this case the new instance may be passed a command-line argument which will indicate that there is a restart in progress so checking for other instances running will not be necessary. Waiting for the first instance to actually finish my be implemented too if it's absolutely imperative that no two intstances are running in parallel.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.