Using Visual Studio 2008 to create an msi to deploy my program with a setup project. I need to know how to make the msi run the exe it just installed. A custom action? If so please explain where/how. Thanks.
|
This is a common question. I don't do it with just a custom action. The only way I know, is to modify the .msi after it has been generated. I run a Javascript script as a post-build event to do exactly that. It inserts a new dialog in the installer wizard, with a checkbox that says "Launch Application Foo?". And then there is a custom action to run the app, if the checkbox is checked. It appears as the last screen in the install Wizard sequence. Looks like this:
This is the script I use to modify the MSI:
I originally got this from Aaron Stebner's blog, and then modified it. Save that Javascript file to the project directory (same dir as contains .vdproj), name it
That oughtta do it. |
|||||||||||||||||
|
|
This seems to be a MUCH simpler solution: Visual Studio Installer > How To Launch App at End of Installer |
|||||||
|
|
Concerning the "hidden checkbox bug" I figured out the following which is not explained by Cheeso's and Muleskinner's answers above: The change of the script (provided by Muleskinner) places the Y position of the checkbox to 201 (I guess top Y pixel for the control). If you change Y to, say, 151 (in order to kind of align it in the center vertically), the bug "suddenly" appears. The reason for that is that there is another control in the Control table of the msi, namely the 'BodyText' ('Dialog' field = 'FinishedForm') which its Y is set to 63 and its height to 138. That is 138 + 63 = 201. Therefore, if you change the Y value for the checkbox, the 'BodyText' control overlaps the newly added control and that's why the user needs to put their mouse over in order to show the checkbox. If you have no 'BodyText' or its number of characters is small enough you could change (by using Orca msi editor as I do, or by altering the script above) the Ys and Heights of these 2 controls in order to be able and accomodate a different Y position for the newly added checkbox. The same applies for the control: 'BodyTextRemove' in which again we should alter its height value (which appears during uninstall) Hope that this helps all the users that had the same question as I had about this "bug" Nevertheless, the script does a really good job! Another question was how to make invisible the Checkbox during unistallation procedure. Using the Orca msi editor I added the following 2 rows in the ControlCondition table of the msi: Row 1 (When control should be shown): (Dialog)FinishedForm (Control)CheckboxLaunch (Action)Show (Condition)REMOVE="" Row 2 (When control should be invisible): (Dialog)FinishedForm (Control)CheckboxLaunch (Action)Hide (Condition)REMOVE<>"" P.S. I am using VS 2010, on windows 7 (x64), but I believe these should work with previous versions too. |
||||
|
|
|
OK!!! Here is the code (without the 2 auxiliary functions 'FindFileIdentifier' & 'StringEndsWith' in the end - use the original ones instead) which gives us the ability to change the Ys and Heights of the controls, along with adding the Checkbox Control Visibility Conditions (see the 2 comments that are marked between 'NEW - START' to 'NEW - END'):
|
||||
|
|
|
Regarding the 'PostBuildEvent' failed with error code '1' 'Unspecified error' error, change the PostBuildEvent from
to
Regarding the hidden checkbox bug you can edit line 54 of the script to become:
|
||||
|
|
|
Yes.. I would write a custom action, and stick it at the end of the InstallExecutionSequence table |
|||||||||||||
|
protected by Brad Larson♦ Mar 29 '11 at 15:11
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
