Tagged Questions

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

learn more… | top users | synonyms

195
votes
31answers
52k views

WiX tricks and tips [closed]

We've been using WiX for a while now, and despite the usual gripes about ease of use, it's going reasonably well. What I'm looking for is useful advice regarding: Setting up a WiX project (layout, ...
21
votes
3answers
4k views

WiX Includes vs Fragments

Quite simply, what's the difference between a WiX include (.wxi file) and a WiX fragment (.wxs file)? What are the use cases for each? Which "should" be used and why?
16
votes
4answers
5k views

Wix create non advertised shortcut for all users / per machine

In WIX, how do you create a non advertised shortcut in the allusers profile? So far I've only been able to accomplish this with advertised shortcuts. I prefer non-advertised shortcuts because you ...
13
votes
3answers
5k views

How to register file types/extensions with a WiX installer?

I didn't find an explicit answer to this question in the WiX Documentation (or Google, for that matter). Of course I could just write the appropriate registry keys in HKCR, but it makes me feel dirty ...
12
votes
2answers
3k 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 ...
11
votes
4answers
3k views

WiX: Prevent 32-bit installer from running on 64-bit Windows

Due to user confusion, our app requires separate installers for 32-bit and 64-bit versions of Windows. While the 32-bit installer runs fine on win64, it has the potential to create support headaches ...
10
votes
2answers
1k 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?
10
votes
2answers
4k views

How do you use WiX to deploy VSTO 3.0 addins?

I want to deploy a VSTO 3 Application Level Word 2007 addin that I've written with Visual Studio 2008. I see that WiX has an extension named WixOfficeExtension that looks like it might have this ...
10
votes
3answers
5k views

How to create/Where to get Wix Bootstrapper for Multiple Instances

I'm currently learning how to create msi installers using WiX and it seems I've hit a wall. All is well when I create an MSI containing everything needed for a single environment. I have features, ...
9
votes
2answers
922 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.
9
votes
5answers
1k views

Including all dependencies

I'm just starting out with WiX as I need to be able to automate building an MSI on our CI server. Is there anyway to automatically include all the dependencies of a project?
8
votes
1answer
4k views

WiX undefined preprocessor variable

I'm starting to use WiX in order to do automated builds to create msi's of my c# projects and am experiencing the error "Undefined preprocessor variable '$(var.MyProject.TargetDir)'" I am using the ...
8
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 ...
8
votes
1answer
4k views

How to create a multi-level subfolder in Start menu using Wix

How do I create sub folders (several levels deep) in the Windows Start menu, using Wix? Currently I am able to put my shortcut in the Start menu, but only in a folder immediately under Programs (Start ...
8
votes
3answers
6k views

How do you register a win32 com dll in WiX3?

So I found this example on registering DLLs: http://blogs.msdn.com/robmen/archive/2004/04/28/122491.aspx and WiX complains about the "AssemblyRegisterComInterop" attribute. I removed that and ...
7
votes
3answers
2k views

How to do a silent install and uninstall with Wix and MSI?

How can a silent installer that does not display any UI Dialogs to the user and installs, upgrades and uninstalls with default settings be created in Wix?
7
votes
2answers
345 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 ...
7
votes
3answers
3k views

How to build a Minimal WIX Installer UI without a license page?

I would like to use the WixUI_Minimal installer, but I don't want the license page. How would you do this?
6
votes
1answer
331 views

Howto use configurable Merge Modules in Wix?

AFAIK it's done like this: Product: <Merge Id ="HelpInstaller" SourceFile="HelpInstaller.msm" Language="1033" DiskId="1"> <ConfigurationData ...
6
votes
3answers
3k views

In WiX how can I select an IIS website by name?

What I would like to do is show the installer user a list of the websites on their server and allow them to choose one (using the method described here: ...
6
votes
2answers
6k views

C# custom action in Wix

When my application is uninstalled, the server needs to be notified so that it can free up the license key assigned to the client. This is done via a web service call. I created a C# custom action ...
6
votes
1answer
1k views

Reusing WIX components to speed up candle/light

I am fairly new to WIX, so forgive me if I'm completly missing the boat here, but I was wondering if it was possible to reuse components (mwm,cab,etc) from within a wxs file without having light ...
6
votes
3answers
3k views

Best way to create a wix fragment file based on User-defined directories to be used in MSBUILD

In the spirit of this question by Si here: http://stackoverflow.com/questions/471424/wix-tricks-and-best-practices. I am trying to determine the best way to get create wix fragments based on a ...
6
votes
4answers
3k views

How to extract data (file count) from MSI “File” Table

In our build process there is currently the potential for non-code based files (such as image files) to be added to our web project, but not included in the MSI installer built by WiX. To help ...
5
votes
3answers
2k views

Wix, Launch application after installation complete, with UAC turned on

Good day. I've been building an installer for our product using the WIX(Windows Installer XML) technology. The expected behavior is that the product is launched, if the check box is checked after ...
5
votes
3answers
3k 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 ...
5
votes
2answers
3k views

In WiX how do I test for the existence of a registry key (not value) for Oracle ODP.Net

More specifically I want to test whether Oracle ODP.Net is installed on a machine. I want to do this by testing for the HKLM\SOFTWARE\ORACLE\ODP.NET registry key. The actual values used by ODP.Net ...
5
votes
4answers
1k views

WiX 3.0 throws error 217, while being executed by continuous integration

This is the error that is thrown by our automated build suite at Windows 2008, while running ICEs (after migrating from WiX 2.0 to Wix 3.0): LGHT0217: Error executing ICE action 'ICE01'. The most ...
5
votes
4answers
2k views

WiX: How to register application to start when Windows launches?

I'm exploring distribution of .NET desktop applications with MSI generated by WiX. So far it works great. But I've got a few questions, googling can't help out with. What's the advised way of ...
5
votes
4answers
2k views

WiX(v3): Harvesting a .csproj with heat.exe in vs2008?

The Question Newly initiated into WiX, I researched and found that v3 uses a tool (heat.exe) to "harvest" information into WiX fragments. I have managed to stumble about and find information on this ...
5
votes
1answer
202 views

Validate user must install at least one of sub features

Here is the structure of my Application's Installer in FeatureTree/SelectionTree Application Core     |_ _ Feature 1     |_ _ Feature 2 ...
4
votes
2answers
55 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?
4
votes
1answer
368 views

Retrieve COM ProgID from exe without registering it

Background: I would like to extract the COM data from a VB6 application so I can register it correctly (according to Microsoft best practice) the application. I am using WiX 3.0 and heat.exe will ...
4
votes
2answers
960 views

WiX - create a bootstrap that passes arguments to the msiexec

I need to create a bootstrap for my WiX project I've tried using setupbld.exe but it will only allow me to create an executable that will show my UI or one that will behave as a silent installer but ...
4
votes
2answers
395 views

How to log the installation date to the registry

When an install completes successfully, the date and time and some other info needs to be written to the registry. How can a date be generated and how do you know if an install was completed ...
4
votes
1answer
1k views

How can I launch an application as Administrator after a WiX MSI has completed?

I want to launch an application with admin rights after I have completed an installation using a WiX based MSI. I can launch the application just fine, on XP but with Windows 7, it's an issue. The ...
4
votes
1answer
633 views

Deleting XML elements in WiX

How do you delete/remove an element from an XML file in WiX?
4
votes
1answer
2k views

WiX - how to create bin subdirectory?

I'm missing something obvious. How do you put the .dll's in a subdirectory called "bin" under your install directory? I'm trying to follow this tutorial: ...
4
votes
4answers
3k 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 ...
4
votes
2answers
1k 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: ...
4
votes
2answers
1k 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 ...
4
votes
1answer
616 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?
4
votes
3answers
2k views

Change my component GUID in wix?

When I should not change my component GUID in WIX?
4
votes
4answers
1k views

Wix - change the installation folder based on privilege

I have to create an installation package using Wix. If an admin user is installing the package, it should install into %programfiles%/[applicationName], if the user is an non-admin user then it should ...
4
votes
3answers
5k views

MSI does not install all files when RemovePreviousVersion is run

I have a MSI build using WiX version 3. All previous installers for the product we are deploying worked fine with the configuration specified (that is: if previous version exists, remove, then ...
3
votes
1answer
40 views

Enforcing minimum DLL version referenced by a registry value

Our app requires a recent version of a DLL in order to function correctly. The path to the DLL is stored in the registry. How do I enforce a minimum file version as a launch condition in Windows ...
3
votes
1answer
226 views

Using Wix to create 32bit and 64bit installers from one .wxs file

I would like to keep my top level .wxs DRY while building 32 and 64 bit installers. I am using the -arch argument to candle.exe to control what default installer architecture is getting built. The ...
3
votes
2answers
257 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 ...
3
votes
1answer
98 views

Reading string resources from satellite assemblies in Wix?

Is it possible through WIX to read resources from resource DLLs than hard-coding the strings in WXS/WXL files? I have the resources in satellite DLLs and I need something more efficient then copying ...
3
votes
1answer
53 views

Windows Installer: can two different installer share the same componet

I have two installers - one for 64-bit Windows and another for 32-bit Windows. The 32-bit installer installs 32-bit executable and DLls, while the 64-bit installer installs 64-bit exes and dlls as ...

1 2 3 4 5 6