For issues relating to deployment using Windows Installer XML, version 3.
16
votes
3answers
11k views
How do you register a Win32 COM DLL file in WiX 3?
I found an example on registering DLLs, Registering an Assembly for COM Interop in a MSI file with the Windows Installer XML toolset., and WiX complains about the "AssemblyRegisterComInterop" ...
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
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 ...
16
votes
3answers
8k 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 ...
3
votes
3answers
2k views
Features installed to different locations but referencing the same components
I have a product that consists of multiple features that can be installed to different locations e.g. Feature 1 is an executable installed in Program Files and Feature 2 is a website installed in ...
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 ...
7
votes
3answers
4k 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 ...
11
votes
2answers
2k views
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.
9
votes
2answers
6k 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 ...
7
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 ...
5
votes
4answers
2k 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 ...
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 ...
3
votes
1answer
3k views
Set Wix property only if certain condition is met
What I would like to do is this:
<Property Id="LICENSEKEYPATH">
REMOVE~="ALL" AND NOT UPGRADINGPRODUCTCODE
<DirectorySearch Id="ProgramDataSearch" AssignToProperty="yes" ...
37
votes
4answers
11k 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 ...
12
votes
2answers
6k 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 ...
23
votes
4answers
7k 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?
8
votes
3answers
8k 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 ...
12
votes
2answers
7k 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, ...
10
votes
3answers
3k views
How to add a UI to a WiX 3 installer?
I've tried <UIRef Id="WixUI_Minimal" />, but I get "Unresolved reference to symbol WixUI:WixUIMinimal". What am I doing wrong?
7
votes
3answers
4k 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 ...
24
votes
3answers
7k 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?
19
votes
7answers
3k 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 ...
7
votes
1answer
1k views
Defining Wix properties and values based on VS active configuration
How can I define Wix properties and values that change depending on which Visual Studio configuration is active? e.g. For our release build, var x = 1 and for the export build, var x = 2.
6
votes
3answers
3k views
6
votes
4answers
6k 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: ...
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 ...
7
votes
4answers
4k 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 ...
2
votes
1answer
487 views
WiX upgrade question - file's major version was incremented, but revision is lower, now old file removed, yet new file is not copied during upgrade
I automatically generate a WiX file for my installer based on a directory (it's for a web app), and it includes references to the following 3 .Net assemblies:
Migrator.dll
Migrator.Framework.dll
...
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 ...
4
votes
1answer
696 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
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/, ...
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 ...
6
votes
4answers
3k 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
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 ...
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 ...
3
votes
3answers
2k views
Get INI file value with WiX
I'd like to read a value from an INI file in a WiX installer. I've just tried to use IniFileSearch, but this looks for an INI file or a path specified in an INI file (the documentation isn't clear), ...
2
votes
1answer
1k views
changing existing COM+ applications identity via vbs script
How to changing existing COM+ applications identity via vbs script. like Authentication level = none and identity to this user via vb scripts. found many posting on add/delete com+ applications but ...
1
vote
1answer
672 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 ...
1
vote
2answers
771 views
WIX: Heat duplicate id issue with multiple features/folders
I am newbie to Wix and creating a multi feature Wix project. Our product is having 4 modules and each module has to be included as a feature in the Windows installer. But all features are sharing the ...
1
vote
1answer
2k views
WIX and Certificates in IIS
I am trying to setup my install to have my site configured with its certificate using WIX.
I can view the certificate in IIS and have access to the .cer file. That is about all I know about ...
2
votes
1answer
127 views
wix unexpected child element 'Website'
With the code below, everything compiles without any error. But when I run the resulting MSI, I don't see any site created in IIS:
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi' ...
2
votes
2answers
592 views
WiX: How do I prevent multiple copies of a bound file being added to an MSI?
I have an installer, which links a wixlib. The wixlib installs an executable file to multiple directories.
When I turn on the "Bind files into the library file" for the wixlib (using the -bf switch), ...
2
votes
1answer
584 views
Is it possible to include “source” files in a wixlib?
Is it possible to include "source" files in a wixlib?
I have a number of c++ solutions, each containing a project or projects, and a wixlib, with a fragment containing entries such as:
<File ...
2
votes
2answers
2k views
WiX Search and Replace on a configuration file
I'm trying to make an install using WiX and I need to modify a configuration file (not XML or INI) with entries that a customized WiX dialog.
Is there a good way to do this? Do I need to make a VB ...
2
votes
1answer
2k views
Question regarding PermissionEx (WIX)
I am new to WIX. I am using util:PermissionEx for creating ACLs. I can successfully set rights like read, write, read & execute but I am unable to find any information about setting Modify ...
1
vote
1answer
682 views
WiX3 major upgrade not working
I have a major upgrade that I am trying to do, but it just doesn't work. It simply installs the new program along side the old one. They are in different directories (as I changed the directory ...
1
vote
1answer
1k views
WiX Installer: How to switch to repair-mode if already installed?
I am new to WiX 3.0 and writing my first installer based on WiX (coming from Wise).
If the product is already installed (in the current version), I want the installer to switch to "repair"-mode ...
1
vote
1answer
509 views
Wix upgrade: preselect features
we're using Wix to create our installers. We're using the UI where one can select the features that need to be installed. Some features are enabled by default and others are disabled.
However, these ...
1
vote
1answer
2k views
Is there a way to set a preprocessor variable to the value of a property?
I have a WiX include file with the following code
<Fragment Id="PropertyFragment">
<Property Id="DynamicLanguageCode" Value="[SystemLanguageID]" />
<?define productLanguage = ...