up vote 1 down vote favorite
share [g+] share [fb]

In a windows project I am working on, I intend to have a menu selection that copletely restarts the app. Is there a Windows or C++ function that does this?

link|improve this question

feedback

6 Answers

up vote 2 down vote accepted

There isn't a built-in for this, but a well-designed application can simply stop everything that's going on and then loop back to the start. If you want a true 'fresh start', you will have to spawn a new process (possibly as the last thing you do before the old one shuts down.)

link|improve this answer
Thanx, could you elaborate a little more on spawning a new process? (I'm fairly new to windows programming) – Keand64 Sep 22 '09 at 22:26
1  
see here: stackoverflow.com/questions/1463040/… – sbi Sep 22 '09 at 23:24
feedback

No, you must do it yourself. For instance, you can run external process which will wait until you exit your application, and then run it again.

link|improve this answer
feedback

Already needed to do this. The easiest way without any further reading would be to write a simple .bat-file (either by hand or dynamically by your application) starting your program and then calling that bat-file from your application.

The bat-file may even contain a line to remove itself after having started your app...

link|improve this answer
feedback

You want to call CreateProcess and then close your current instance of the application gracefully with ExitProcess(), or if you link to the C runtime, just return from main(). But first you should ask yourself why you need to recreate the process in the first place.

link|improve this answer
feedback

Actually you might want to take a look at the Restart Manager API that came in with Windows Vista. As ever you can p-invoke this to your hearts content and theirs explicit support coming for it in Visual C++ 2010.

link|improve this answer
feedback

ExitWindowsEx is what you want. You can also run the shutdown.exe utility built into windows.

shutdown -t0 -r (restart the system after 0 seconds)
link|improve this answer
Whoops misread. – Byron Whitlock Sep 22 '09 at 22:22
Leaving in case it is needed by anyone else :D – Byron Whitlock Sep 22 '09 at 22:23
Keand64 wants to restart application, not the whole system. – Wacek Sep 22 '09 at 22:23
8  
Technically, if he puts his app in the Run key or in the startup folder, this will restart his app. – Michael Sep 22 '09 at 22:29
feedback

Your Answer

 
or
required, but never shown

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