How do I restart my C# WinForm Application? - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T23:56:31Zhttp://stackoverflow.com/feeds/question/779405http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/779405/how-do-i-restart-my-c-winform-application1How do I restart my C# WinForm Application?Noffie2009-04-22T21:52:20Z2009-09-09T20:11:09Z
<p>Developing a C# .NET 2.0 WinForm Application. Need the application to close and restart itself.</p>
<pre><code>Application.Restart();
</code></pre>
<p>The above method has <a href="http://stackoverflow.com/questions/95098/why-is-application-restart-not-reliable">proven to be unreliable</a>.</p>
<p>What is a better way to restart the application?</p>
http://stackoverflow.com/questions/779405/how-do-i-restart-my-c-winform-application/779411#7794111Answer by Noffie for How do I restart my C# WinForm Application?Noffie2009-04-22T21:54:06Z2009-04-30T13:51:15Z<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 < 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. My guess is you would be better off launching a second .exe which pauses and then starts your main application for you.</p>
http://stackoverflow.com/questions/779405/how-do-i-restart-my-c-winform-application/780330#7803301Answer by Erich Mirabal for How do I restart my C# WinForm Application?Erich Mirabal2009-04-23T04:34:50Z2009-04-23T04:34:50Z<p>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 <code>Process.StartInfo</code> with a clone of your process' parameters, then do a start.</p>
<p>For example, if your process was started as <code>myexe -f -nosplash myfile.txt</code>, your method would only execute <code>myexe</code> without all those flags and parameters.</p>
http://stackoverflow.com/questions/779405/how-do-i-restart-my-c-winform-application/1397391#13973911Answer by HiredMind for How do I restart my C# WinForm Application?HiredMind2009-09-09T03:22:30Z2009-09-09T20:11:09Z<p>The selected answer doesn't work. According to the Process.Start() docs:
"If the process is already running, no additional process resource is started..." </p>
<p>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.)</p>
<p>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.</p>
<p>Edit: Using a 2nd application works. All I did in the second app was:</p>
<pre><code> 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, "");
}
</code></pre>
<p>(This is a very simplified example. The real code has lots of sanity checking, error handling, etc)</p>