vote up 1 vote down star

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?

flag

1  
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 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. :( – Noffie Apr 30 at 17:23

3 Answers

vote up 1 vote down check

The selected answer doesn't work. 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|flag
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. – Noffie Sep 29 at 19:30
vote up 1 vote down

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|flag
I updated my answer to address this issue. – Noffie Apr 23 at 15:13
vote up 1 vote down

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|flag
1  
That might not work if application is protected from multiple instances. – majkinetor Apr 23 at 10:34
@majkinetor - Noted in updated answer to question. – Noffie Apr 23 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. – Noffie Apr 27 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 at 20:15

Your Answer

Get an OpenID
or

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