0
votes
0answers
8 views

WIX Installing windows service

Actually i am trying to install windows services through WIX the windows services is trying to install and if i check inside service Manager i can able to seee Windows services is installed and Status ...
0
votes
1answer
36 views

WIX Combobox Bind Values

I am trying to populate values using custom actions and want to bind the values into combobox which is inside product.wxs. Can anyone guide me how to bind values if I want to populate a list of ...
1
vote
1answer
49 views

How to create a Wix patch in combination with Heat?

I'm developer on a big system (>100 Projects in Solution, >100 000 LOC, > 10 Services, ...) and did the installation of this system in the past with wix and it worked fine. Now I need a way to patch ...
0
votes
2answers
77 views

WiX: how to pack exe or dll to use only during installation

I need to include a dll/exe in the resulting MSI (created through a WiX project), but I do not want to deploy them during installation: I only want to use them in some CustomAction my purpose is to ...
0
votes
1answer
80 views

WiX 3 Custom Action - Function returns without Exception

I've writen a Custom Action in WiX 3.7 and now when i want to connect to a Database (Firebird) somewhere it just returns out of the function, i've debugged now for more then an hour, but could not ...
3
votes
1answer
126 views

WIX Dialog change property text value

Can I change the Text properties of buttons on existing controls? The code below doesn't do the trick <Publish Dialog="FeaturesDlg" Control="Install" Property="Text" Value="Next" /> ...
0
votes
1answer
185 views

wix service dependencies

My product has several features including two services. Let's call them ServiceA and ServiceB. Both of these service features are optional. However if both ServiceA and ServiceB is selected during ...
2
votes
1answer
198 views

PhsyicalMemory condition always fails on bundle/bootstrapper installation for WiX 3.6

The condition for PhysicalMemory always fails when using the bal extensions. I can try PhysicalMemory >= 3500 and PhysicalMemory < 3500 and PhysicalMemory >= 0. No matter what, the condition fails. ...
1
vote
2answers
191 views

Suppressing InstallDir UI during Upgrade on wix

I want to suppress the InstallDir UI for upgrade scenario. I will get previously installed path from registry and i just want to suppress the this UI. Is there any way to do this?
4
votes
2answers
503 views

Wix: Is there any wix command to create database user?

Is they any wix command I can use to create database and to also add a user to the database? If yes, is there any example on how to do this?
0
votes
1answer
559 views

Create a patch using WiX with many Components

I'm using WiX (currently 3.6) to create a setup for my application. Next step is to create patches when something must be changed. As I use heat to create automatically components for a lot of files, ...