wix-gui

Wix - Custom installation directory

假装没事ソ 提交于 2020-01-22 19:54:12
问题 I'm using Wix 3.x and the user should be able to choose the target directory. My Setup.wxs is currently like here: http://pastebin.com/uH1EjbDQ What is the simplest way to ask the user for a custom target directory? (INSTALLDIR/TARGETDIR?!) I have seen example in which people build there own dialog pages but this isn't really necessary, is it? Update: When I add <Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR"/> <UIRef Id="WixUI_InstallDir" /> after <UIRef Id="WixUI_Mondo" /> but before <

Wix installation, server, client or both

喜你入骨 提交于 2019-12-19 11:06:35
问题 I want create Wix installer to install, Client , Server or Both based on User selection . My question is How can I restrict installing client when user selects Server (it gets installed as it has Level=1). I have customizied WixUI_Mondo . I tried using Condition for Component but no luck. <Feature Id="Client" Level="1"> <ComponentRef Id="ClientMainExecutable" /> <ComponentRef Id="ClientConfigurations" /> </Feature> <Feature Id="Server" Level="3"> <ComponentRef Id="ServerExecutable" />

Wix installation, server, client or both

风格不统一 提交于 2019-12-19 11:06:21
问题 I want create Wix installer to install, Client , Server or Both based on User selection . My question is How can I restrict installing client when user selects Server (it gets installed as it has Level=1). I have customizied WixUI_Mondo . I tried using Condition for Component but no luck. <Feature Id="Client" Level="1"> <ComponentRef Id="ClientMainExecutable" /> <ComponentRef Id="ClientConfigurations" /> </Feature> <Feature Id="Server" Level="3"> <ComponentRef Id="ServerExecutable" />

How can I add an optional UI to WiX toolset

只愿长相守 提交于 2019-12-02 23:47:00
问题 I have already made a quiet installer (without the need to click any buttons but some progress bar is shown while installation is in progress) for a project deployment. This time I wish to add an optional graphical user interface. By default, the installer should just run without clicking anything, when a parameter is given, let's say, the msiexec parameter: /qf , the installer would pop up an interface that can be interacted with. I've already added the required UI dll to the project

Wix - Choice of UI based on property

此生再无相见时 提交于 2019-12-01 13:24:45
问题 In my Wix application, I want to have 2 different UI . During execution, I want the choice of UI to be done depending of the value of a property. Is it possible to achieve this and how ? 回答1: Perhaps what you need is to handle the GUI yourself inside your launcher application. This is possible via the MsiSetExternalUI function. See these previous answers: Is there anyway to get msiexec to echo to stdout instead of logging to a file Uncommon UI layout for Windows installer for Techsmith Snagit