I'm using Microsoft Visual Studio 2010 to create a simple .MSI installer for my simple .EXE application.

Trouble is, things go wrong (until a reboot) if you install an upgrade while the .EXE is still running.

I'd like for the .MSI installer to terminate my process before installing/upgrading.

Please could someone tell me how to do this in Orca?

EDIT: I've seen this occur due to my .EXE being in use, but I've also seen it because the .CHM help file was open at time of upgrade as well, so any process termination alone is not enough to solve this problem.

link|improve this question

75% accept rate
feedback

3 Answers

You should ad the MsiRMFilesInUse Dialog to your installer.

link|improve this answer
Will this detect my help file is open? – servermanfail Feb 28 '11 at 8:01
As stated in the documentation: "The MsiRMFilesInUse Dialog box can be authored to display a list of processes that are currently running files that need to be overwritten or deleted by the installation. " You can rely on the RestartManager published events to safely close your application. However this dialog can be used with windows installer 4.0 or higher. For lower versions you can use the FilesInUse Dialog. – Ciprian Feb 28 '11 at 11:03
feedback

You can try creating a custom action which stops your application (a custom EXE or DLL written by you). For example you can send WM_CLOSE to the main application window (your application should handle this message).

This custom action should be scheduled before InstallValidate action in InstallExecuteSequence table.

link|improve this answer
Thanks, as per my edit, this answer isn't enough. But as it did directly answer my original question, here's a +1. Next time, I'll focus on my problem, not on my idea of an answer. – servermanfail Feb 28 '11 at 8:00
feedback

You could write a custom action that closes your application as well as your help file.

You should be able to find the window handles for both of these by using FindWindow: http://msdn.microsoft.com/en-us/library/ms633499(v=vs.85).aspx

For the executable, you should be able to use the appropriate Window Class or Title for FindWindow. For the help file, you should be able to use the appropriate Help Window Title for FindWindow.

I hope this helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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