Sunteți pe pagina 1din 2

26/4/2017 c# - Wix - How to run exe files after installation from installed directory?

- Stack Overflow

x Dismiss

nete a la comunidad de Stack Overflow

Stack Overflow es una comunidad de 7.0 millones de


programadores como t que se ayudan mutuamente.
nete a ellos, slo te llevar un minuto:

Registrarse

Wix - How to run exe files after installation from installed directory?

I'm using a program which is being installed using wix. (Don't know if it's relevant but it's a C# program)

I want to run an exe file which was installed by the msi file, but the location of the installation is unknown to me since the user chooses the
installation path.

I wanted to ask for example of how to run an exe file from the location the user chooses.

Even though it's not a part of the question, I would also be glad to see some example of running an exe file from an absolute location since
I'm a beginner to wix and doing it all for the first time.

c# .net wix exe

edited Oct 9 '13 at 12:29 asked Oct 9 '13 at 12:20


Yonatan Nir
2,557 8 35 71

1 Answer

No encuentras la respuesta? Pregunta en Stack Overflow en espaol.

This can be achieved with the help of the WIX Extensions. The bold/italic text below will
handle the case of finding the exact location of your EXE :)

Step 1: Add the extension libraries to your project

If you are using WiX on the command-line you need to add the following to your candle and
light command lines:

-ext WixUIExtension -ext WixUtilExtension

If you are using Visual Studio you can add the extensions using the Add Reference dialog:

Right click on your project in Solution Explorer and select Add Reference...
Select the WixUIExtension.dll assembly from the list and click Add
Select the WixUtilExtension.dll assembly from the list and click Add
Close the Add Reference dialog

Step 2: Add UI to your installer

The WiX Minimal UI sequence includes a basic set of dialogs that includes a finished dialog
with optional checkbox. To include the sequence in your project add the following snippet
anywhere inside the <Product> element.

<UI>
<UIRef Id="WixUI_Minimal" />
</UI>

To display the checkbox on the last screen of the installer include the following snippet
anywhere inside the <Product> element:

<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Launch My Application


Name" />

http://stackoverflow.com/questions/19271862/wix-how-to-run-exe-files-after-installation-from-installed-directory 1/2
26/4/2017 c# - Wix - How to run exe files after installation from installed directory? - Stack Overflow
The WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT property is provided by the standard
UI sequence that, when set, displays the checkbox and uses the specified value as the
checkbox label.

Step 3: Include the custom action

Custom actions are included in a WiX project using the element. Running an application is
accomplished with the WixShellExecTarget custom action. To tell Windows Installer about the
custom action, and to set its properties, include the following in your project anywhere inside
the <Product> element:

<Property Id="WixShellExecTarget" Value="[#myapplication.exe]" />


<CustomAction Id="LaunchApplication" BinaryKey="WixCA" DllEntry="WixShellExec"
Impersonate="yes" />

The Property element sets the WixShellExecTarget to the location of the installed application.
WixShellExecTarget is the property Id the WixShellExec custom action expects will be set to
the location of the file to run. *

The Value property uses the special # character to tell WiX to look up the full
installed path of the file with the id myapplication.exe.

The CustomAction element includes the action in the installer. It is given a unique Id, and the
BinaryKey and DllEntry properties indicate the assembly and entry point for the custom action.
The Impersonate property tells Windows Installer to run the custom action as the installing
user.

Step 4: Trigger the custom action

Simply including the custom action, as in Step 3, isn't sufficient to cause it to run. Windows
Installer must also be told when the custom action should be triggered. This is done by using
the <Publish> element to add it to the actions run when the user clicks the Finished button on
the final page of the UI dialogs. The Publish element should be included inside the element
from Step 2, and looks like this:

<Publish Dialog="ExitDialog"
Control="Finish"
Event="DoAction"
Value="LaunchApplication">WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT
Installed</Publish>

The Dialog property specifies the dialog the Custom Action will be attached to, in this case the
ExitDialog. The Control property specifies that the Finish button on the dialog triggers the
custom action. The Event property indicates that a custom action should be run when the
button is clicked, and the Value property specifies the custom action that was included in Step
3. The condition on the element prevents the action from running unless the checkbox from
Step 2 was checked and the application was actually installed (as opposed to being removed
or repaired).

Check this link for details. How to run exe after install. I copied it here for the benefit of others
looking for the same answer.

answered Oct 9 '13 at 14:09


Isaiah4110
6,240 16 31

Do you want to try answering this question: (a new one) stackoverflow.com/questions/19355537/


Yonatan Nir Oct 14 '13 at 12:33

1 When I try this the installer never exists. When you try to close the installer it launches a new app every time
you click close but it never exits. Martin Capodici May 26 '14 at 0:21

http://stackoverflow.com/questions/19271862/wix-how-to-run-exe-files-after-installation-from-installed-directory 2/2

S-ar putea să vă placă și