Questions tagged [wix3.8]

For issues relating to deployment using WiX toolset, version 3.8.

270 questions
2
votes
1 answer

Wix - Where do I install Windows features

I'm using the following code to install Windows features (like the IIS) within my msi-setup which also installs my wcf services.
Dust258
  • 485
  • 1
  • 3
  • 18
2
votes
1 answer

Wix installation fails on Server 2003 when using Wix Extensions

I have an *.msi installation that uses Wix Extensions : WixFirewallExtension (To create firewall exceptions) WixNetFxExtention (To create Native Images at install time) This msi fails with the error "Installation ended prematurely..." when…
Kuffs
  • 35,581
  • 10
  • 79
  • 92
1
vote
0 answers

WiX: WIX Logs show two INSTALL actions. What is the first one?

I am analyzing the WiX logs (/Lv) during the installation process very carefully. What i realized, that during the install process two INSTALL actions will be started. The second one during the first is still processing. What is the first Install…
Trafo
  • 71
  • 7
1
vote
1 answer

wix custom action to remove http binding

I have a Wix installer to deploy my application in IIS. I want to remove HTTP binding when it deploys. Below is the cmd command that helps in removing the HTTP binding: “set site /site.name:"My Project Management"…
1
vote
1 answer

Display installation summary in exit dialog in Wix installer

There is a requirement that I am working on to display installation summary information at the end of successful installation on exit dialog. The information contains the features selected for installation and other user inputs during user…
Santhosh
  • 671
  • 12
  • 36
1
vote
2 answers

The system cannot find the file "wixca.dll"

I migrated the project from Wix 2.0 to 4.0, then when i am trying to build the project from visual studio 2017 (Votive) to generate installer software package, I am getting the below error: The system cannot find the file "wixca.dll" I looked into…
Yar
  • 321
  • 1
  • 17
1
vote
1 answer

wix - error CNDL0004: The file element contains an unexpected attribute "src" when running from the command line

When I run the below command from the command line for the WIx installer after migrated from version 2.0 to 4.0 E:\Code\PCPE\builder>ant -v -f Build.xml -Dlabel =.001 install I am getting the below error: error CNDL0004: The file element contains…
Yar
  • 321
  • 1
  • 17
1
vote
1 answer

When migrating Wix 3.0 to Wix 4.0 getting error : WXCP0006 : The whitespace preceding this node is incorrect (WhitespacePrecedingNodeWrong)

When I am migrating Wix 3.0 to Wix 4.0 using WixCOP I am getting the error WXCP0006 : The whitespace preceding this node is incorrect (WhitespacePrecedingNodeWrong) I am running the below command WixCop.exe -f…
Yar
  • 321
  • 1
  • 17
1
vote
1 answer

Wix if and else if condition inside component element

I have a .wxs file for program installation. I want to pass a part of installation depending on the IIS version (for ex. execute if IIS verion > #10 set something and else if <= #7 set something ) and continue to install other parts.
Bindya
  • 135
  • 2
  • 14
1
vote
2 answers

How do you detect installed product versions at each startup?

This problem, in fact, is to avoid a problem I will not solve When I install my product once and I use the MSI again, the unloading process is performed. However, this does not remove residual information from the registry, which must be cleaned Up…
Vercetti
  • 11
  • 2
1
vote
2 answers

Simple WiX Custom Action in Custom UI Ends Prematurely with Windows 7

My WiX installer UI is getting error while using the Custom Action. Interesting part is, the installer is working fine in Windows 10 but while launching it on Windows 7, installer is getting interrupted. From the installer logs, the error code is…
Rahul
  • 1,607
  • 3
  • 23
  • 41
1
vote
1 answer

Custom Action for Feature in WIX

I am trying to execute an EXE file through my installation and this file should be installed if the related feature will be installed in the feature tree. I have two questions : 1-How to relate the Custom Action to this feature."The condition" 2-…
NFAL
  • 185
  • 3
  • 20
1
vote
1 answer

How can I change the width of the Textbox in the header?

We are using Wix Toolset 3.11 to build an .msi. We use a banner that contains our company logo: The Problem: Our logo has a width of 130px. In some Dialogs, the text in the header is too long…
Simon
  • 4,157
  • 2
  • 46
  • 87
1
vote
1 answer

WIX bootstrapper files in use dialog for multiple MSI packages

I've created a WIX Bootstrapper application that installs two MSI packages. One of which is a simple application that can be installed by just closing an already running instance and without reboot. The other package installs a library to be used by…
Jan Gassen
  • 3,406
  • 2
  • 26
  • 44
1
vote
0 answers

How to skip set of files when creating pure WIX patch

I am working on a patch using pure WIX. How can I exclude one or more files explicitly from the patch. Suppose my baseline image consist of binaryA, Binary B and Binary C. I dont want to included Binary C in my patch creation. Is this feasible when…
S D
  • 11
  • 1