The Windows Installer XML (WiX) is a toolset that builds Windows installation packages from XML source code. The toolset supports a command line environment that developers may integrate into their build processes to build MSI and MSM setup packages.

learn more… | top users | synonyms

1
vote
0answers
103 views

Localise baloon help for MaskedEdit on WiX

I'm using WiX for preparing installer of my application. I create two installers, each one in different language (English and Polish). For preparing application in English I use command like: ...
1
vote
0answers
158 views

Config files for GAC assemblies using Wix

I know this has been asked a few times in the past. And I have read all the responses and answers and none of them seem appropriate. I've tried putting the .config in the same component and in a ...
1
vote
0answers
133 views

Wix Custom Action result not saved to file

I have created a C# application that uses a SQL Server database, or a local SQLite database. To synchronize the two I created a command line converter (also C#) that creates the SQLite file from the ...
1
vote
0answers
133 views

wix: upgrade didn't remove the earlier product from ARP

Using Wix 3.5, my initial MSI package (MyProduct v1.0) contained quite a few features, e.g. MS Word 95/XP/2003/2007/2010, MS Excel 95/XP/2003/2007/2010, MS PowerPoint 95/XP/2003/2007/2010. Their ...
1
vote
0answers
94 views

IIS: Blank Sites created with Name SITE_XX

We've got an automated deploy script which deletes the current websites using the WebAdministration powershell provider, then runs an installer (created using Wix - version 3) to install a new version ...
1
vote
0answers
572 views

WiX: Read environment variable into property and create/modify in text field

UPDATE (2012-02-14): I found out that it's not possible to read environment variables before Install* sequences within CustomActions. This means you cannot read a variable and display it in the UI ...
1
vote
0answers
113 views

Wix: After move files from Component to another one - upgrade incorrect

I have 2 version of installer created by using wix. Old version differents of new version by files in components: some files from one component was moved to another one: Was: <!--OLD ...
1
vote
0answers
946 views

How to build an MSI using WIX, JAVA and MAVEN

I'm trying to build an Msi from a java application which is using the spring and maven frameworks. From all the reading up i have done it would seem Wix is the best option. With some further research ...
1
vote
0answers
130 views

Get A Merge Modules File ID to use as a version for the main installer

I have a merge module, where I am adding my directories and files etc. merge.msm inside here i hava a component with an id of somefile <Component Id="Client" Guid="GUID"> <File ...
1
vote
0answers
171 views

WiX - Error Applying Transforms

I have a WiX project that currently creates an MSI in English, French, Spanish and German. More languages to be added later. All of these installers work properly when run under the OS location ...
1
vote
0answers
280 views

.NET COM Interop deployment with Wix failing

I'm developing a .NET BandObject toolbar for Internet Explorer. I'm working off the sample at CodeProject ( http://www.codeproject.com/KB/cs/Issuewithbandobjects.aspx ) and everything was working ...
1
vote
0answers
100 views

SharpDevelop does not save changes in WXS file

I open *.wxs file in SharpDevelop and made layout of controls (Text aligned to right, move etc). Then clicked Save All. Reopen this file and see that all changes were lost. How can I align and resize ...
1
vote
0answers
146 views

WIX - Spawning a Dialog dialog during installation

Is it possible to spawn a dialog after a custom action that is scheduled in InstallExecuteSequence??? I have a two custom Action, after the first one, I need to spawn a dialog. When the user click OK ...
1
vote
0answers
153 views

Wix creates a Bootstrapper folder - is it needed?

When I build my Wix project, it creates a Bootstrapper folder in the output directory (i.e. bin\Debug\Bootstrapper). Is that folder actually needed by the installer, or is it just an intermediate ...
1
vote
0answers
237 views

bootstrap install .net on server 2003/2008

I have read this article on creating a bootstrapper to install the .NET framework. I have a wix setup project and need to do a similar thing and more. Is there an alternative way to install .NET on ...
1
vote
0answers
477 views

Wix project error in TFS build

I am building a solution that contains a Wix v3.6 project on Team Foundation Server (TFS 2010). The solution also contains some other class library projects. The TFS build is unsuccessful with the ...
1
vote
0answers
121 views

WiX complus uninstallation issue

i managed to write complus installer with wix. however when i uninstall it, the installer name will disappear from add/remove program but the complus won't get uninstalled. i heard this is wix 3.0 ...
1
vote
0answers
2k views

Msiexec REINSTALL=ALL REINSTALLMODE=vamus is not working

In my installer (created using WiX) I forcefully re install everything using msiexec REINSTALL=ALL REINSTALLMODE=vamus /qr /i setup.msi command. This was working fine but after adding a new component ...
1
vote
0answers
1k views

GenerateBootstrapper fails to create a working setup.exe

I’m seeing some odd behaviour I can’t explain. I'm using wix to generate a msi and using the msbuild GenerateBootstrapper task to handle pre-requisites. It all seems to build correctly i.e. there ...
1
vote
0answers
150 views

Wix Reset button not working

I am having a UI screen with Reset button and Browse control. When the screen opens, by default I am displaying "Programfiles\myapp\" as a path to install my files. Use the browse button user can ...
0
votes
0answers
2 views

Writing unique GUID to registry

What is the simplest way to write unique GUID to registry during each installation using WIX? I have a simple installer without custom actions dll and don't want to create one just for this task. I ...
0
votes
0answers
21 views

make single Bundle project using Bootstrapper in Window installer XML

i have done a project for outlook add-ins. then i used WIX to create a setup file for this add-ins. But we need resolve the dependencies too, so i made a bootstrappper project using wix, which first ...
0
votes
0answers
10 views

WIX: Non responsive app prevents install/update

We had deployed our Notification area (Tray) app with a fault. It had no top level window and therefore did not receive WM_CLOSE events. In short, if Windows Installer tries to close it with its built ...
0
votes
0answers
16 views

How to make a “normal” program shortcut in the installer?

I have a problem with the shortcuts generated by our current Wix setup - when a user right-clicks the desktop icon and pins it to the taskbar, that taskbar icon is lost when they upgrade to the next ...
0
votes
0answers
24 views

Signed WIX Bootstrap EXE can't use taskkill in custom action

We are using Wix to sign and create MSIs, and then bundle them into a signed EXE. The MSIs are generated fine. Each MSI contains a command to run at the end to kill the application. In the standard ...
0
votes
0answers
12 views

wix - virtual directory definition

In order to define virtual directory in the IIS you should define physical path and can define specific user. I try to understand what in the wix elements used for each one. I can see that there is ...
0
votes
0answers
19 views

different shortcut behavior during unattended installation

I am trying to create a Start Menu shortcut. This is the code I'm using: <Fragment> <SetProperty Id="MIFOLDER" Value="[INSTALLFOLDER]\MI" Before="CostFinalize"></SetProperty> ...
0
votes
0answers
14 views

Wix Burn: Setting Engine LocalSource to extract Burn contents

I only guess this that Engine.SetLocalSource(sPackageId, sPayloadId, sLocalSourcePath) would set sLocalSourcePath where Payloads would be deployed and would be executed further by burn instead ...
0
votes
0answers
19 views

Drop User at uninstall Wix

From my wix I want to create a user when install and drop the user at uninstall. This is a part of my wix, where the uninstallation will happend: <sql:SqlString Id="DeleteUser" ...
0
votes
0answers
19 views

Burn: Access to msi files inside Bootstrapper.exe

Question: Can we access msi files (and other installers) packed with Burn Bootstrapper at install time? Let's say if we need to read some property, or apply mst just before starting the installation ...
0
votes
0answers
18 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
0answers
27 views

Conditionally include and rename file in wix

I have an installer that is including a third party library with a 32 and 64 bit version. The library comes with a 32-bit and 64-bit folder with the same file name. What I've done is renamed the files ...
0
votes
0answers
40 views
+50

WiX equivalent of “Regasm.exe my.dll /codebase”?

CodeProject has a great Windows shell extension tutorial. Compile, run Regasm.exe CSShellExtContextMenuHandler.dll /codebase, and the shell extension is available, it works great. But asking users ...
0
votes
0answers
29 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 ...
0
votes
0answers
22 views

Add Native DLL to Existing COM+ Application using WIX

I need to add a native DLL to an existing COM+ application while installing some components using WIX. Is this possible? if so how? I have a component something like this: <Component ...
0
votes
0answers
32 views

WIX : Create virtual directory under other website than 'Default Web Site'

I have created an installer where user has option to select a website from dropdown (dropdown will list all available websites) and provide name for virtual directory. Code: <iis:WebVirtualDir ...
0
votes
0answers
22 views

How to make exe keep on installing sliently after reboot system in wix?

I make a bootstrapper exe installer by wix v3.8,and the code as follows: <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" ...
0
votes
0answers
32 views

IIS configuration in WiX

Is it possible to configure IIS using WiX? If it is then how do I find out which ASP.NET and IIS features (for example, add MIME types, add application string, add connection string, etc.) can be ...
0
votes
0answers
42 views

wix XmlConfig: is it possible to remove all child elements within a parent node

In using wix, it's come up a few times that I'd like to completely replace all the child elements of a parent, but without the child elements being necessarily known. So far I haven't found a way to ...
0
votes
0answers
18 views

How to create ui for bundle on uninstall?

The exe installer that maked by bundle of wix v3.8 should be closed or restarted browsers before uninstall finished. How do I do?Thanks!
0
votes
0answers
38 views

Multi instance installer

I want example of WiX 3.6 multiinstance installer. I searched through the net but could get only example which are not complete. Can anybody help me in getting it understood well and a complete ...
0
votes
0answers
96 views

Writing a custom INF for WinUSB driver package installation targetting windows8 64 bit OS

I have a simple user mode usb driver that is installing and working fine in Windows XP 32 bit,Windows 7 32 & 64 bit and windows 8 32 bit. but for some reason fails to install correctly in Windows ...
0
votes
0answers
44 views

Change installation scope from per-user to per-machine

I'm trying to include two msi-packages into wix Bundle: one of them (per-user) must uninstall the product,after that another one must install the same product but in per-machine scope and it installs ...
0
votes
0answers
29 views

How to manually do action “Migrate features ” via Bundle

I'm having machines with product installed in per-user context. And now I want to upgrade product and install it in per-machine context. I know that it is not possible via major upgrades. I'm trying ...
0
votes
0answers
58 views

TransformXml task failed while packaging

Hi when I try to do packaging stuff in MSBuild and build the solution. <Target Name="BeforeBuild"> <MSBuild Projects="%(ProjectReference.FullPath)" Targets="Package" ...
0
votes
0answers
52 views

How do I solve the error 0x80072efd caused by remote payload .net in wix v3.8?

My wix code as follows: <ExePackage Id="NetFx40ClientRedist" Name =".NET Framework 4.0 client runtime" Cache="no" Compressed="no" PerMachine="yes" Vital="yes" ...
0
votes
0answers
44 views

WiX - How to define only Feature tree UI

I've used the WixUI_FeatureTree dialog set but what I really need is a UI with the feature selection dialog, nothing else. WixUI dialog library contains the CustomizeDlg dialog which I understand to ...
0
votes
0answers
94 views

Wix Installer that autostarts exe as admin on winstartup without showing the admin prompt

I am making an auto font installer, and got some issues making the setup, first some info about the app. The app is scan a dir (her download dir) every 1 sec. If there are new font files, then I copy ...
0
votes
0answers
50 views

WIX Filter components by pattern and conditions on the components or Custom Action Setting based on Property

Hi I have below sample Components output of Heat.EXE. And was able to create MSI package with all the components.Basically I want filter below files based on the parameter to Installer (like Dev or ...
0
votes
0answers
85 views

Drop database from WiX installer

The properties [DATABASE_NAME] and [SERVER_NAME] are defined by the user at installation and it seems like unless they are hard coded then doing this fails: <Component Id="Component.Sql.Database" ...

1 2 3 4 5 14