0
votes
1answer
10 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 ...
0
votes
1answer
20 views

previously present folder is getting deleted

I am installing a Wix msi. It adds folders and files to an already existing folder installed by another application. When i uninstall the msi, it deletes the existing folder. Tried using shared="yes". ...
0
votes
1answer
119 views

(WiX) - Auto-generate GUID with pre-build event (heat.exe)

i've made a pre-build event for my directorys/files. now its creating the source.wxs fine, but there are only 'GUID="*"', so now i get compiler error because it is not mapped on ProgrammFilesFolder, ...
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 ...
0
votes
1answer
52 views

installing web application with integrated pool

I have a web application that I want to install on IIS7. I use wix 3.7 but i see it does not support integrated pool out of the box.Is there a way to do it?
0
votes
1answer
39 views

including file from parent folder

I have a setup folder, and for organization sake, I'm putting everything in folders. I noticed when I have a wxs file in sub folder and I include a wxi file that located in root folder, i get error ...
0
votes
2answers
163 views

Windows Server 2008/Vista- check which server roles installed

I know that serverManagerCmd.exe -query <foo.xml> will output list of all roles + features in xml format. However, I do not have the ability to parse this easily as I am writing WiX code. So is ...
0
votes
1answer
120 views

WiX display Maintenance dialog when Repair is started from ARP

Is there some way a UI can be enabled when Repair is started from ARP? Somehow Change runs with full UI and Repair only with minimum UI. I'm using WiX 3.5.
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
2answers
113 views

Windows installer log files showing a large group 2360 messages

I am trying to run an installer using the MSI command line option so that I can run it in debug mode and see the logs. The logs that I am getting are quite large (near to 1 MB) and they are full of ...
0
votes
1answer
85 views

Wix: Install fragment to several locations [duplicate]

Possible Duplicate: Features installed to different locations but referencing the same components I have a wix installer which installs several web services. After the services are ...
0
votes
2answers
254 views

WiX: ListItems not displayed in ComboBox

When I create (try to create) a ComboBox in WiX, the box receives its initial value from the corresponding property's value set earlier in the .wxs-file. This far, everythings goes as planned. When I ...
2
votes
0answers
179 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 ...
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?
1
vote
2answers
122 views

Preserving data in the APPDATAFOLDER directory when uninstalling the application with a Wix installer

I'm storing some some files in the application data (APPDATAFOLDER) folder when I'm installing my Wix application. Wix creates the sub-folder in the APPDATAFOLDER correctly but when uninstalling, it ...
0
votes
1answer
59 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?
0
votes
1answer
53 views

Error while checking for the user rights at the selection of a radiobutton and clicking the next button

I have a scenario in which i check for the user rights (whether a standard user or admin): i am using something like: <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" ...
1
vote
1answer
781 views

Add a folder to installer in wix not files?

My installer has to copy files into installdir... My application has around 2000 files and it is not possible for me to write the script to add each and every file to the installer. Is there any ...
0
votes
0answers
193 views

Wix Error 1920 - While updating with a lower version the setup removes the installed version on error instead of rolling it back

I have two versions of setup say v1 and v2. Both of them are run using the same privilages and both of them install and start a service - which is also the same. When I install v1 first and then v2 ...
2
votes
1answer
621 views

registering com dll in wix

If not self registering. then how do we perform the COM dll registering while installation using WIX? As per the ...
3
votes
1answer
2k views

WiX CustomAction ExeCommand failing?

I have a command line I want to run during the install of a merge module (created by WiX) with the below code. <CustomAction Id='SetWebsiteProtocols' Execute='commit' Return='ignore' ...
5
votes
3answers
511 views

Register add-ins, project templates and item templates for Visual Studio 11

I've been using Wix 3.5 with WixVSExtension to install project item templates for Visual Studio 2010, Visual C# 2010 Express and Visual Web Developer 2010 Express. I'd like now to add support for ...
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
333 views

wix serviceinstall directory permissions

I am installing a service using wix. also I am creating a directory using CreateFolder. The service when it start checks if this directory is existing or not. Because of permissions issue, the ...
0
votes
1answer
182 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
402 views

How to assign a textbox value to a WIX Variable

I have created a textbox in WIX Dialog box and now I want to get what ever the value enterted in the text box should assign to one wix variable. can you please let me know how can I achive it.
2
votes
2answers
251 views

Detemining newer version of executable in Wix

We have a software that has couple of executables inside. One of the executables is Windows service, and it doesn't change that often, usually we release many updates to the main executable, but the ...
3
votes
2answers
827 views

WiX patching not updating files correctly

My "admin-image" style WiX test patches are failing to update the existing installation correctly. When using msiexec /lx, I get the following information related to patching "fi_executable.exe": MSI ...
0
votes
1answer
176 views

Do WiX patches update registry settings?

This is a two-part question: Do "just-WiX" WiX patches update components with RegistryValue key-paths when those RegistryValues are different in the updated build? Do "admin-image" WiX patches ...
2
votes
1answer
374 views

How do you exclude specific files from a WiX patch?

I'm using WiX's admin-image-style patch creation, but the resulting patch contains extra files that I don't want to include. My understanding of WiX patching is that it is "inclusive" by default -- ...
1
vote
1answer
876 views

Create patch file using msimsp.exe

I have setups created by WIX. I want to prepare patch installer to install/update the files that have been changed in the newer version. I tried to create patch using WIX code, but was not ...
1
vote
1answer
181 views

Is it possible to have a merge module targetting the GAC?

I'm trying to figure out the best way to create a merge module that installs .NET assemblies. I'd like to allow the user of the module to specify a folder or the GAC. I found that to allow targeting ...
1
vote
2answers
203 views

How to assign Hotkey for a shortcut which is deployed through Wix

I am trying to assign an HotKey (Ctrl+Alt+S) for a shortcut I deploy on Windows Desktop using Wix. Below is how I tried to assign the value. However the compiler says that the Hotkey value has to be a ...
0
votes
1answer
187 views

Is there a way to add paths to 3rd Party assemblies for proper directory harvesting by heat?

We are trying to introduce more automation into the generation of our installation using heat. Our build outputs artifacts in a directory that I would like to harvest using heat. Since we do not ...
4
votes
1answer
1k views

How to execute Custom Action before RemoveExistingProducts with After=“InstallValidate” in WiX

I have something like this: <InstallExecuteSequence> <RemoveExistingProducts After="InstallValidate"/> </InstallExecuteSequence> Since one of the uninstallation fails i need to ...
0
votes
1answer
511 views

Wix - Keep Folders after uninstall

I want to create an installer using Wix that copies a certain file to the folder "C:\Users\Your User\Documents\Visual Studio 2010\Addins\" When I write the following code: <Directory ...
0
votes
2answers
282 views

MSIEmbeddedChainer & MSIEmbeddedUI

i am finding some example source codes for the MSIEmbeddedChainer & MSIEmbeddedUI. wix v3.0 has <EmbeddedChainer> command, but there's no info of how to use (or probably incomplete ...