Why is Application.Restart() not reliable? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T23:44:43Z http://stackoverflow.com/feeds/question/95098 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/95098/why-is-application-restart-not-reliable 3 Why is Application.Restart() not reliable? MADMap 2008-09-18T18:08:05Z 2009-04-23T16:51:31Z <p>Using the Method Application.Restart() in C# should restart the current Application: but it seems that this is not always working.</p> <p>Is there a reason for this Issue, can somebody tell me, why it doesn't work all the time?</p> http://stackoverflow.com/questions/95098/why-is-application-restart-not-reliable/95239#95239 -1 Answer by Oli for Why is Application.Restart() not reliable? Oli 2008-09-18T18:20:08Z 2008-09-18T18:20:08Z <p>Try locking before dumping. Here's how I initiate a full app-dump. Might work for you, might not.</p> <pre><code>Context.Application.Lock(); Context.Session.Abandon(); Context.Application.RemoveAll(); Context.Application.Restart(); Context.Application.UnLock(); </code></pre> http://stackoverflow.com/questions/95098/why-is-application-restart-not-reliable/95259#95259 3 Answer by DannySmurf for Why is Application.Restart() not reliable? DannySmurf 2008-09-18T18:21:47Z 2008-09-18T18:21:47Z <p>There could be a lot of reasons for this. It's not that the method doesn't work; rather, many times programmers forget that they've put something in their code that would stop the application from automatically shutting down, or starting up. Two examples:</p> <p>The Closing event on a form can stop an app's shutdown If you're doing checking for an already-running process, the old one may not be closing fast enough to allow the new one to start up.</p> <p>Check your code for gotchas like that. If you're seeing this behaviour within a blank application, then that's more likely to be a problem with the actual function than your code.</p> http://stackoverflow.com/questions/95098/why-is-application-restart-not-reliable/95274#95274 2 Answer by Timothy Carter for Why is Application.Restart() not reliable? Timothy Carter 2008-09-18T18:23:14Z 2009-02-24T22:55:32Z <p>The only time I've run into this kind of issue is when in my main form I had a custom FormClosing event handler, that performed logic and canceled the event.</p> <p>EDIT:</p> <p>I have now run into another instance and based on your comments it possibly mirrors what you were experiencing. When running a single instance application, using a Mutex, I was calling Application.Restart() from a fairly embedded" location, that had a lot of cleanup to do. So it seems the restart was launching a new instance before the previous instance was complete, so the Mutex was keeping the new instance from starting.</p> http://stackoverflow.com/questions/95098/why-is-application-restart-not-reliable/779152#779152 0 Answer by Noffie for Why is Application.Restart() not reliable? Noffie 2009-04-22T20:46:00Z 2009-04-23T16:51:31Z <h2>Start/Exit Method</h2> <pre><code>// Get the parameters/arguments passed to program if any string arguments = string.Empty; string[] args = Environment.GetCommandLineArgs(); for (int i = 1; i &lt; 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); </code></pre> <p>This seems to work better than Application.Restart(); </p> <p>Not sure how this handles if your program protects against multiple instance. Perhaps this change to the second part would handle that case?:</p> <pre><code>Application.Exit(); System.Threading.Thread.Sleep(5000); System.Diagnostics.Process.Start(Application.ExecutablePath, arguments); </code></pre> <p>My guess is you would be better off launching a second .exe which pauses and then starts your main application for you.</p>