0
votes
0answers
8 views

How to edit an element using XmlConfig in WiX?

How can an xml element's value be edited using XmlConfig in WiX 3.7? I'd like to edit this: <root> <ele1/> <root> to this: <root> <ele1>aValue</ele1> ...
0
votes
0answers
20 views

Wix installer unable to uninstall old version

Facing one really strange problem with WIX installer. I am migrating from VSI to WIX. The VSI version of setup installs everything in Program Files and runs a custom action at the end of uninstall to ...
1
vote
0answers
19 views

Wix Bootstrapper Uninstallation

I need to programatically access the uninstall location of the bootstrapper. I need this information because some files which will be needed by the packages in the chain during uninstall need to be ...
0
votes
1answer
40 views

Wix: how to forcefully kill a process/task?

I need to forcefully kill a process that is running in the background before attempting to delete any files, when running an Uninstall from an MSI created with Wix. The main application consist of a ...
0
votes
1answer
25 views

Transition from visual studio to wix installer

I have visual studio installer installs everything in Programfiles. I have done transition and create new WIX installer. Wix installer alone works fine but when I try to upgrade my old version I get ...
0
votes
1answer
38 views

WiX bootstrapper: Uninstall packages in a chain

<ExePackage Id="PackageID1" DisplayName="xxx" Compressed="yes" SourceFile="..\xxx\MyExe.exe" Vital="yes" InstallCommand="parameters to the exe" ...
2
votes
1answer
46 views

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 ...
1
vote
1answer
29 views

Referencing WiX extension in same solution as wixproj

I wrote up a quick WiX preprocessor extension to grab some product version information from a file we keep in our root folder. I'd like to keep this extension in the same solution as our WiX setup ...
1
vote
1answer
61 views

WiX 3.7 UI not linking correctly

Newbie to WiX here... I have created my WiX installer package, and it installs all features correctly. Then I try adding a UI to it with the following: <UIRef Id="WixUI_Minimal" /> <UIRef ...
0
votes
1answer
94 views

Customising WiX FeaturesDlg - changing WiX UI in realtime

I'd like to customise the WiX FeaturesDlg, so that if a particular server feature is selected that the user can click a button and set which user credentials are used for the service. I've put ...
0
votes
2answers
87 views

How can I know installation path of a exe?

I'm making a C# program and I need to find installation paths of some software that is installed on a computer. What I have to work with is, I have the Program's name (e.g. Google Chrome), i have the ...
1
vote
1answer
90 views

How to pass parameters to an ExecPackage in Bundle.wxs of WiX

I am chaining a batch file in Bundle.wxs as an "ExecPackage". The batch file expects a parameter/commandline argument. <ExePackage Id="Test" SourceFile="D:\TestBatch.bat" Vital="yes" ...
0
votes
2answers
78 views

Upgrade from previous Visual Studio Setup to Wix

I had an old installer which was a basic visual studio setup project however after some time we realized that it was just no where near as complex as we need. So I've spent a few days generating a ...
0
votes
1answer
118 views

How to use WiX preprocessor pragmas?

I'm currently working on a test WiX project to see what I can do with it. Recently, I've stumbled upon the fact that I can override the ProcessPragma method in my preprocessor extension to write WiX ...
2
votes
1answer
266 views

wix bootstrapper

I have written a managed wix bootstrapper using WPF. The actual installation steps requires chaining of multiple msi's/exe's and batch files. <Chain> <MsiPackage SourceFile="xxx"/> ...
1
vote
1answer
509 views

Wix Installer start menu shortcut not appearing

I am trying to create an installer project for a windows application using WiX v3.7 (as VS2012 does not include setup and deployment projects any more) for learning purposes. Wix toolset is entegrated ...
0
votes
1answer
144 views

WIX edit binary file in custom action

I'm trying to do the following: during install open and edit sql file via custom action save edited changes and execute it during install. In my product.wxs I have the following: <Binary ...
0
votes
2answers
687 views

WIX database deployment, installation

During my setup I give an option to use "windows authentication" OR "server authetication". Everything works fine and db gets installed as long as I do "server authentication" and provide db userId ...
0
votes
1answer
194 views

Wix Load items into ComboBox

I need to use custom action to load items into combobox. UI.wxs: <Control Id="Server" Type="ComboBox" X="30" Y="65" Width="200" Height="18" Property="DATABASE_SERVER"> ...
0
votes
0answers
67 views

MSI Community Extensions - deploying databases - database execute script

I did everything as described in this post. I got everything working ok except I wanted to have an SQL script executed after db is created. Whenever I add <DataSource:ODBCExecute ...
0
votes
0answers
43 views

Wix Localization fails for WixIIsExtension,

i am trying create my setup for localization support, i got below error while build Error 17 The localization variable !(loc.msierrIISCannotConnect) is unknown. Please ensure the variable is ...
2
votes
1answer
661 views

WIX Bootstrapper for .net 4.5

I am new to WiX and have built a standalone installer. I would like to detect if the system has .net 4.5 on it and prompt the user to install this. My development environment is VS 2010 using the ...
0
votes
0answers
157 views

WiX Upgrade is not working. Not copying file from the source. Not removing previous version

I am using WiX for Setup & Upgrade of my web application. I made a Web Application upgrade following all rules of WiX upgrade. I am facing following problems currently:- It is not copying files ...
2
votes
1answer
42 views

How to remove previous application after upgrade?

I made a web application upgrade which is perfectly upgrading the app as well as registry and IIS entry. But after upgrade in registry it is replacing previous version(in IIS also). But in 'Program ...
1
vote
1answer
210 views

WiX XmlConfig: Elements not removed on uninstall

I'm having difficulty removing on uninstall the elements that I add to an XML file on install. Here's my setup: The XML file already exists on the machine before install and can't be remove after ...
2
votes
1answer
341 views

WiX XmlConfig: Purpose for nesting XmlConfig in XmlConfig

What is the purpose and/or gain (other than increased readability for creating/deleting attributes) to nesting an XmlConfig element in another XmlConfig element? Example of what I'm referring to ...
3
votes
1answer
117 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" /> ...
2
votes
1answer
54 views

Using WIX to install / configure MS loop back adaptor

Is it possible to install and or configure (if already installed) Microsoft loop back adapter on XP/WIN7 using MSI. Is it possible to do this using WiX 3.5 or above?
0
votes
0answers
76 views

Wix Open Page without using WixUtilExtension

I followed the solution on Wix Open web page when uninstall completes It works but I want to modify the solution so that I don't have to put -ext WixUtilExtension when use light.exe <Property ...
3
votes
1answer
750 views

Wix does not uninstall IIS Web Application

I am using Wix 3.5 to build a MSI installer that installs two Web Applications in IIS 7. The user can choose for each application whether to install it under "Default Web Site" or any other existing ...
2
votes
1answer
966 views

Why does my WiX installer need an empty CreateFolder to conditionally update an Xml file?

TL;DR: Why do I need an empty <CreateFolder/> element in this conditional component in order to make it work? I'm putting together a simple WiX based installer for an in-house application. This ...
1
vote
0answers
282 views

Remove XML element using WiX XmlConfig

I have this XML file: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <dependency> ...
1
vote
2answers
230 views

Using WiX to update manifest file

I have a manifest file for an application which looks something like this: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" ...
0
votes
1answer
103 views

How to remove Custom Eventlog on uninstall?

In my current assignment I am having a requirement where I need to create custom eventlog during installation and uninstall this custom eventlog during uninstallation. I am able to create custom ...
1
vote
1answer
327 views

How I can display localized WiX UI in my managed bootstrapper?

When I used MSI package UI, I used WixUIExtension and "WixUI_ErrorProgressText" set. But when I use managed bootstrapper and ExecuteMsiMessage event to display progress text, it has no effect and I ...
2
votes
0answers
174 views

Is there a WiX 3.5-compatible extension dialog for SQL connections?

We wish to add a dialog to our WiX installer that prompts the user for a SQL server connection: server address, authentication type, and SQL login/password. A Test Connection button would be nice as ...
0
votes
1answer
57 views

WIX where can i find WixUi_en-us file?

I have installed Wix 3.5 and i want to customize some dialogs, where can i find WixUi_en-us file?
2
votes
0answers
887 views

How to initialize IIS web app's Physical Path Credentials property in WiX

Update: probably an IIS or MSI version dependency The issue appears on this configuration: Windows Server 2008 R2 Standard Version 6.1 (build 7600), IIS 7.5.7600.16385, MSI v5.0.7600.16385 On this ...
0
votes
1answer
83 views

Wix modify existing control

I just started on Wix today, I want to modify "LicenseAgreementDlg" (I believe its a built-in dialog). I want to replace checkbox with Radio button. I did some research and I think I have create a ...
1
vote
1answer
543 views

Using the firewall extension in WiX

I'm trying to write a WiX script that uses the firewall extension to WiX, and it doesn't seem to find the extension dll (I think). The error I'm seeing is this: The File element contains an ...
3
votes
1answer
803 views

WiX - Trying to set the permissions of a service using util:PermissionEx and getting an Error 1

This question - WiX - Install Windows Service and give permissions is exactly what I am trying to do. I added the UtilExtension schema like so - <Wix ...
2
votes
1answer
115 views

Dealing with env specific files using WIX

I am in the process of migrating all my projects one by one from Installshield to Wix and I would like to find out the best way to deal with env specific files. Our current process is: Using ...
1
vote
1answer
214 views

Use percentage char in value of XmlFile

I need to use the percentage char within the value attribute of the XmlFile element to configure path of log4net rolling file appender while application is installed. Target is to get log4net ...
4
votes
2answers
470 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?
1
vote
1answer
80 views

Sending Property Value to Wix Extension Method

I have a wix property <Property Id="VAR1" Value="aValue" /> And i want to send this value into my Extension method <Property Id="TEST" Value="$(extension.GetResult(VAR1)" /> I want ...
4
votes
2answers
466 views

WIX Office Detection Extension

I am currently writing a WIX Installer which has a few dependencies on other products being installed. It is in C# and requires the following dependencies Office 2010 (including Excel/Word) .NET ...
1
vote
1answer
151 views

Visual Studio doesn't release files used in WiX Extension

I have a problem with building wixproj under Visual Studio. What I have done: added my preprocessor extension as separate project (wile reading this post) added my extension method invocation in ...
0
votes
1answer
176 views

How to replace the value in script using WIX

I have SQL Script and executing that script as part of MSI Intallation using WIX Tool. Now I would like to declare a variable in the script and want to replace the variable value from Include file ...
0
votes
1answer
47 views

Use a user supplied value as the value of the Wix attribute

I want to know if it's possible to have the user who is installing the package to supply the value of the eventsource name. <util:EventSource Log="Application" Name="WixSample" SupportsErrors ...
4
votes
2answers
1k views

Conditional choose between two exit dialog when using WIX's InstallDir UI extension

I would like to have two different exit dialogs based on the version of the VersionMsi property in order to utilize the hyperlink control for the exit dialog. More information here. I'm using a ...

1 2