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?
|
Developing a C# .NET 2.0 WinForm Application. Need the application to close and restart itself.
The above method has proven to be unreliable. What is a better way to restart the application?
| |||||||||||
feedback
|
|
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:
(This is a very simplified example. The real code has lots of sanity checking, error handling, etc) | ||||
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:
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:
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. | |||||||||
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 For example, if your process was started as | |||||||
feedback
|
Start/Exit Method
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. | |||||||||||||
feedback
|
|
If you are in main app form try to use
| |||||
feedback
|
|
A much simpler approach that worked for me is:
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. | |||
|
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:
| |||
|
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 Code:
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:
| |||
|
feedback
|
|
Try this code
this code must also be in the function
| |||
|
feedback
|
|
How about create a bat file, run the batch file before closing, and then close the current instance. The batch file does this:
| |||||
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. | |||
|
feedback
|