For issues relating to deployment using Windows Installer XML, version 3.

learn more… | top users | synonyms

2
votes
1answer
3k views

Remove file and folders on uninstall

I am learning WIX to build installer for my app but I am stuck with removing files. My question is how can I remove files and folders on uninstall. When I click on remove button, all the files and ...
1
vote
1answer
1k views

WiX installer design options for bootstrapper and seamless updating

I have an app that on first installer run needs a boostrapper where you can choose the language of the installed app, install .net framework if it's not there yet and some other prerequisites. ...
2
votes
1answer
481 views

Wix: Add a sequential registry key

I am writing an installer using Wix 3 which installs a plugin to a 3rd party application. The application uses a group of registry keys to detect installed plugins. Each plugin is required to add a ...
1
vote
1answer
2k views

How can I change the font colour and type of a string in WiX in one of the standard dialogs?

Is there a simple way to change the font colour and (preferably) font type for one of the strings in one of the standard UI dialogs in Wix? I'd prefer not to copy and paste the entire dialog source ...
2
votes
2answers
614 views

Stop service at uninstall on Win 7 with UAC on from WIX

How can i stop my service at uninstall in Win7 or Vista with UAC on from WIX? When i uninstall my service from Control Panel in Win7 or Vista with UAC on I always get "File is in use message". How can ...
1
vote
1answer
758 views

Problem with WiX Votive 3.0 preprocessor

I have just started using WiX for the first time. I added a WiX Votive project to my existing C project. To automatically select the correct source folder for the binaries add used the following: ...
3
votes
1answer
1k views

Copy if not exist in WiX

I have a config file, myapp.exe.config, that I want to install only if it does not already exist. That is, I don't want to overwrite any existing config file. How can this be done in WiX? (Ultimately ...
1
vote
1answer
480 views

install previous version when service major upgrade fails

I have the following scenario. MSI installs a service. MSI makes MAJOR upgrade to this installed service (uninstalls old version and installs new version) During the major upgrade if it fails, it ...
0
votes
1answer
765 views

WiX: How can I install a guidance automation package (GAT) using WiX?

I'm currently writing an installation for our in-house development SDK. Part of this SDK is a guidance package for Visual Studio 2008 (Guidance Framework Version: February 2008). Unfortunately I ...
3
votes
2answers
1k views

How To Run the Installed Application After Setup in Wix?

I want to execute the application, I have upgraded. http://wix.sourceforge.net/manual-wix3/run%5Fprogram%5Fafter%5Finstall.htm does not work for me as I do not have an Exit dialog.
8
votes
3answers
6k views

Platform Identification in WIX 3.0

I am facing issues when migrating the managed code from x86 to x64 platform. I have a WIX project to create a MSI which will be executed through Bootstrapper. On x86 Platform, files get copied in ...
0
votes
1answer
384 views

how to update product.wxs file dynamic

i want to make an application which includes dynamic screensaver. User can select multiple images from their PC and generate swf file. so i want to include swf file and images in the wix project ...
3
votes
4answers
6k views

WiX: Passing Install path to managed custom action

new Day, new Problem;-) Still got to struggle with managed custom action. I already managed it to call an custom action and passing some test data to it. Now i want to replace the testdata with the ...
3
votes
2answers
490 views

Controlling Shortcut order in wix

Given a Wix installer with multiple shortcuts in the start menu, how can I, without renaming the shortcuts, control the order they appear in the start menu?
1
vote
2answers
2k views

WiX: Passing Data to managed custom action does not work

i got a problem regarding wix and managed custom actions: I already managed it to create an managed custom action and got it called from my installer (verified it in the installation log files). My ...
10
votes
2answers
2k views

Wix Open web page when uninstall completes

I'm using Wix3. I need to open a web page when the user uninstalls the product. Any ideas how it can be done? Thanks.
2
votes
1answer
489 views

How can I add attributes and elements from a new namepace in Wix and ignored by Wix?

I want to add a unrelated attribute in the Wix wxs file and want Wix to ignore it. It currently throws up following error as it goes looking for the extension. The Component element contains an ...
1
vote
1answer
130 views

In WIX, how to install WebFilter at the server level?

I know how to install a WebFilter into a particular WebSite (or Virtual Server). How can I install a WebFilter into the WebService - or to the top-level server?
5
votes
2answers
2k views

Wix - how to handle project references when using heat's output with candle?

I'm trying to use heat on a web .csproj, and then use candle on the output. So far, I've done: heat project "StatusReport Web.csproj" -pog:Binaries pog:Content -ag -out StatusReport.wxs And then: ...
6
votes
2answers
1k views

Understanding GUIDS, updates, and patches with Windows-Installer

I'm learning about Windows-Installer and Wix, and have a number of questions related to how it works: If a component GUID changes, but the same files are in the component, what happens on a major ...
3
votes
2answers
279 views

3rd party Wix libraries

I am just getting started with Wix. I see there there a several libraries included with the default Wix install. I also see that users can create their own libraries(wixlibs). Are there any 3rd ...
7
votes
2answers
2k views

Upgrade individual feature in WIX feature-tree without uninstalling/upgrading other feature(s)

I'm trying to create a setup project using WIX that will allow me to install multiple features of a single product. How can I update one of the installed features (which is independent of the other ...
5
votes
2answers
2k views

Customizing text in the standard Wix dialogs

I'm making use of the Wix standard dialogs. How do I customise the text of the messages displayed? For example, in the License Agreement page, I want to change the text "I accept the terms in the ...
2
votes
1answer
540 views

WIX 3.0 Generate Features from .NET projects

I have a large .NET source tree (185 C# and VB projects, of which 60 are apps or websites) that i want to create a wix setup for. The general idea is to have 1 setup msi and to make each executable a ...
1
vote
2answers
919 views

WiX: Define a File component that may not exist

I need to define a Wix file component that may not exist in certain circumstances. Is there any way to do this? Condition elements in Wix all seem to work at install time, and I need something that'll ...
7
votes
3answers
5k views

WIX, Dot Net managed custom Action, dynamically fill combo box with SQL Server instances, MSI

In WIX am in-need of a dot net managed custom code to dynamically populate a combo box with the values of sql server instances in that network. I tried to google but got nothing worked Any help is ...
2
votes
4answers
3k views

Register ActiveX exe server using WiX

I have several VB6 ActiveX server exe files which need to be registered on install before they can be used. I have tried using Heat to extract the information but it only generates a file element. ...
19
votes
2answers
6k views

In WiX files, what does Name=“SourceDir” refer to?

WiX files always seem to include this line: <Directory Id="TARGETDIR" Name="SourceDir"> What is "SourceDir"? What is it used for? It's not a real directory name. Is it some kind of magical ...
0
votes
1answer
316 views

Multiple SqlString actions at different sequences in Wix

I'd like to execute SQL strings at two different sequences in the InstallExecuteSequence. The problem is that it seems if you use the supplied <sql:SqlString \>, they get bundled into the ...
4
votes
2answers
3k views

WiX 3: Using heat.exe to add bulk files to a new WiX project: HEAT5150

If this is a repeat question, please direct me to the existing solution. I wasn't able to find a matching query. We currently use InstallShield. I'm attempting to covert a project with 407 files to a ...
1
vote
2answers
2k views

WIX ServiceInstall - setting the service to run under the NetworkService account

I am trying to create a WIX installer to install my windows service to run under the NetworkService account and getting an Insufficient Priviledges error during the installation. I found this post ...
0
votes
3answers
197 views

How can I use standard WiX to create a streamlined installer experience?

Background: Currently, we have created a wizard by WiX UI. The user should click next, next and next... But suddenly, we found that there's nothing should be interacted with user, user just need keep ...
4
votes
1answer
2k views

Wix Component with files in different directories

Can I create a component with Wix that has files in different directories/subdirectories? Or all the files of a component should be in the same directory? How do I set the XML for that?
22
votes
2answers
4k views

Wix: one file per component or several files per component?

Should I wrap all the files I want to install in individual components? What is the advantage of putting several files in one component?
7
votes
2answers
426 views

WiX Standard Dialogues

Does anyone know if there are any WiX standard UI dialouges out there that you can use to integrate into your own WiX msi package? For example: Editing Connection Strings to database Editing paths ...
2
votes
2answers
2k views

Remove a GUID=“” component installed with WiX

I've messed up my WiX-based installer on multiple servers so that it no longer removes files or components (or even other features) during an uninstall. The MSI log shows that PreviouslyPinned=1 on ...
0
votes
1answer
1k views

TrustedInstaller is preventing registry writes to HKCR\DirectShow\MediaObjects\Categories

I'm trying to install a DMO which requires me to write to HKCR\DirectShow\MediaObjects\Categories\57f2db8b-e6bb-4513-9d43-dcd2a6593125, this registry path is protected by TrustedInstaller and it seems ...
5
votes
4answers
1k views

WiX “Major Upgrade” doesn't completely install app on downgrade

Currently all upgrades work fine whenever updating to a newer version number, however I'm getting an odd behavior when downgrading. It seems that it'll uninstall the existing version and then ...
0
votes
1answer
387 views

WIX/DTF - Dialog with a list, edit field and add/remove buttons on it

Anybody knows a good source to get an idea how to create this kind of a dialog? I'm well aware that I'll need to write some CA's for that but relatively new to WiX (used to work with InstallShield). ...
2
votes
2answers
2k views

WiX set App_Data folder permission to modify for NetworkService

I'm struggling with this one. I need to set the permissions of the App_Data folder in an ASP.Net site to Modify for the NetworkService account via my Wix installer. I tried the following but with no ...
1
vote
1answer
209 views

Wix UI for Installing Web sites

Anyone have a WiX UI sequence for installing an ASP.Net Web site? Something that asks for a virtual dir, and app name similar to what the Visual Studio install projects do?
2
votes
1answer
3k views

Wix: Merge Module with multiple wxs files

So, I am trying to create a merge module where I have multiple wxs files. I thought that everything was OK since the build of my project succeeded. Later, I realized that the path used in Source ...
1
vote
1answer
457 views

Component GUID in Wix

I have a .net dll that is shared by 2 applications of mine, client and the server. I do not know where the files will be installed as user chooses the install and he may only install client or both ...
1
vote
1answer
283 views

How do I dynamically set a file source based on a property in WIX?

We have four regions (dev, test, qa, prod) that all require environment specific config files. I am trying to develop a WIX install that will accept a property assignment from the msiexec command ...
3
votes
1answer
3k views

wix product id should be autogenerated for patch number changes?

I use wix for building a setup for a product. The product has version of the format major.minor.patchnumber Example: 4.5.1313 in each build the last patchnumber keeps changing like 1314, 1315 ...
10
votes
5answers
2k views

Dynamically create WIX files without having to edit the wix files manually

Suppose you release the next version of your software, you will have to manually update your WIX files to remove obsolete files and add new files, etc. My use case is as simple as "recursively add ...
1
vote
1answer
786 views

Uninstalling an in-use shared assembly leaving WinSxs in a bad state

I am having troubles uninstalling a shared win32 SxS assembly using Wix3 on WinXP. My wix file looks pretty much like the one described in ...
6
votes
3answers
3k views

Change my component GUID in wix?

When I should not change my component GUID in WIX?
5
votes
1answer
769 views

WIX 3 : Using HEAT for Visual Basic 6 COM Dlls

I am using WIX 3. I have used heat to create a wxs file for a VB6 dll. The msi creates without any errors, and the installation is successful as well. All seems to be fine, and I can invoke the ...
4
votes
1answer
3k views

How do I populate a ComboBox at install time in WiX?

Edit: I've updated the code below so that it now works, thanks to Rob's answer. I've found a couple of pages that show how to do this (http://www.cmcrossroads.com/content/view/13160/120/, ...

1 3 4 5 6 7