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.
3
votes
0answers
807 views
Win8: How do programs like OblyTile and Modern Tile Maker assign tiles to non-Metro app shorcuts?
We have a .NET but non-Metro app, built in Visual Studio 2010. We would like to show a nice 512x512 (or whatever) image for our app on the Desktop. We do not need Live Tile functionality, we just need ...
2
votes
0answers
21 views
WIX: Update progress text while executing one custom action?
I want to update progress text when executing one custom action.
I have done bellowing things:
1. declare my custom action to be deferred
2. use below code to reset the progress bar:
private static ...
2
votes
0answers
91 views
Wix Toolset: cannot add Excel Add-in project reference
I've just installed latest Wix v3.7. I created a VS 2010 "Excel 2010 Add-in" project and, in the same solution, a Wix "Setup Project".
Problem is, when I try to reference the Add-in project from the ...
2
votes
0answers
141 views
WiX Multiple Instances - Remove Custom Resources on uninstall of last Instance
I am creating a Multi-Instance MSI for my product using WiX.
The MultiInstance="yes" attribute solves the problem of managing all supported resources (like files, registry values, windows services ...
2
votes
0answers
88 views
WiX: how to skip removing of iis:WebVirtualDir if virtual directory contains nested directories?
My msi install and uninstall a shared resource: IIS virtual directory "MyTeamServices". And it works very well except it removes that virtual directory during uninstall process even if somebody have ...
2
votes
0answers
119 views
custom library of standard workflow activities in Wf4
We have developed several wf4 custom activities that we want to provide to customers to work with in their solutions.
We are thinking in a workflow extension SDK that can reference the libraries in ...
2
votes
0answers
150 views
Migrating from Wix 2 to Wix 3: Duplicate Symbols
I am totally new to WiX, so of course my first task with WiX is to migrate an existing large installation program from WiX 2 to WiX 3. I've had a number of wrinkles most of which have been sorted, ...
2
votes
0answers
147 views
Why does Wix session.Message for FileInUse shows up empty?
I have a Wix Custom Action that looks for Outlook and prompts the user to kill it. I don't want to kill OL myself but, want the user to do it.
Here's my Custom Action:
[CustomAction]
public ...
2
votes
0answers
174 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 ...
2
votes
0answers
904 views
How to initialize IIS web app's Physical Path Credentials property in WiX
Update: probably an IIS or MSI version dependency
The issue appears on this configuration:
Windows Server 2008 R2 Standard Version 6.1 (build 7600), IIS 7.5.7600.16385, MSI v5.0.7600.16385
On this ...
2
votes
0answers
639 views
Installation of VSTO Office addin using WiX
I've made an Excel addin and tried to install it using this answer:
How do you use WiX to deploy VSTO 3.0 addins?
It doesn't work this way and I figured out that when Visual Studio deploys addins it ...
2
votes
0answers
258 views
How to properly run heat.exe tool to generate Wix code compatible with InstallScope='perUser'?
We use Wix tool heat.exe for harvesting files when building MSI installer. The problem is that the XML generated by this tool is not compatible with per-user installation type. Is there a way to make ...
2
votes
0answers
200 views
How to mirror the titlebar of an MSI installer?
I'm trying to internationalize an installation package using WiX (Windows Installer XML), but I keep running into a problem with right to left languages (e.g. Arabic and Hebrew).
I've followed the ...
2
votes
0answers
703 views
Wix error - Windows Installer Hot Fix 981669
We have an issue in our product installation in XP OS with Windows Installer 4.5 & it’s Hot Fix 981669. The installation is prematurely ending[Error 1719: The Windows Installer Service could not ...
1
vote
0answers
10 views
Check whether property has minimum number of characters (or contains a space) in WIX
I'm attempting to verify a user's input in a MaskedEdit control to ensure that it contains the 10 numeric chars (for a phone number). How can I apply such a condition?
My current code only checks to ...
1
vote
0answers
22 views
WIX Web Project installer removes manually added virtual directory
We have a project web installer that installs, upgrades etc. properly. The only issue is that on upgrade we have a problem with a virtual directory created inside the application manually via the IIS ...
1
vote
0answers
24 views
Name of shortcut created by wix installer to support latin as well as Russian,Japanese and Korean strings
I need to create an installer using wix which would create a shortcut entry. The name of this shortcut would vary with the language property specified by user while installing.
Now I have taken the ...
1
vote
0answers
23 views
Wix Patch Generation issues
I am currently struggling to build a working patch for our product using WiX 3.7.
We are currently at the development stage with our product and I want to validate the process for building patches ...
1
vote
0answers
45 views
Side-By-Side Configuration and Wix Installer
I'm working on WiX installer for a C++ VC9 x64 application which is dependent on Microsoft Visual C++ 2008 SP1 Redistributable Package (x64) ...
1
vote
0answers
44 views
C# multiple managed dependencies failing when not run with optimizations
I've found this utterly hilarious bug when I've been trying to debug my WiX installer's custom actions.
I didn't write the code, but somehow one of my three managed .dlls decides it is invisible to ...
1
vote
0answers
78 views
WiX Property passthrough not working (sometimes)
Using WiX 3.6 I'm trying to create an MSI for silent installation of an in-house product.
One some machines, my installer works fine, but on others the installer fails with an error message ...
1
vote
0answers
47 views
Is it possible (with an MSI using WiX) to advertise shortcuts to “all users”, but to do the actual installation “per user”?
My MSI installer is authored using WiX.
It installs "per user", in order to allow non-administrator users to install updates (InstallScope attribute of Package element is set to perUser).
However, ...
1
vote
0answers
67 views
Wix .NET 4.0.3 for Portable Class Library
I've got a project that contains a .NET Portable Class Library that targets .NET 4.0.
My understanding is that this means the client needs to have .NET 4.0.3 installed (KB2468871). How do I detect ...
1
vote
0answers
50 views
Plugin external .dll reference with local-copy false but .dll in different location on users machine
I have developed a plugin for an application. The developer documentation for this application requires that the API file, let's call it API.dll, should be copy-local = false when referenced in my ...
1
vote
0answers
92 views
Changing directory name using custom action in WIX
I want to change directory name of INSTALLLOCOSFILES using the custom action based on the OS, if target machine OS is XP then folder name should be WindowsXP, if it is windows 7 then name should be ...
1
vote
0answers
59 views
Grant service start / stop permissions to existing service using WiX
My WiX installer installs ServiceA which runs as NetworkService. During its run time, ServiceA has an occassional need to restart an already installed ServiceB. However, ServiceB does not grant ...
1
vote
0answers
141 views
Wix installer - Primary Output From “Project” Releasex64 / Buildx64
my project is C++/MFC and i'm converting from VS2010 to VS2012. i'm using Wix 3.7 as an installer.
in Visual Stduio's installer i could get the Primary Output from a Project from release or debug ...
1
vote
0answers
479 views
wix, install files and run bat file
I have problem using wix to build msi installer which will install some bat file and run it. I found some example on the internet, but i was not able to make it work :/ here is my wix source file
...
1
vote
0answers
62 views
Advanced RememberProperty pattern
Rob Mensching has an article "Remember Property pattern" which allows to protect values, specified in command-line from being overwritten by RegSearches. And all works fine until we need some advanced ...
1
vote
0answers
54 views
How to leave a virtual directory after uninstall
I have a Web Site created in IIS. I want to create a virtual directory under it and then another one under that. When I uninstall, I only want to uninstall the last virtual directory if there's ...
1
vote
0answers
165 views
Wix registry files generated by Heat.exe have local file paths
I have a directory I am successfully harvesting with heat.
Heat.exe dir "$(ProjectDir)\..\source\DataInterface" -v -cg DataInterfaceFiles -gg -scom -sreg -sfrag -srd -dr DATAINTERFACEFOLDER -var ...
1
vote
0answers
33 views
Extract COM Data from EXE Server
Hi I am trying to Extract the registration entries I need from my EXE so that I can register it using my wix setup.
I have tried using Regspy but i only get the error 'Can't Create Process', does ...
1
vote
0answers
429 views
WiX Custom action not executing
I am having trouble with a Wix custom action not executing. The installer continually rolls itself back even when the custom action returns ActionResult.Success.
Custom Action (C#)
[CustomAction]
...
1
vote
0answers
135 views
WiX Overcoming “Could not access network location” error
Currently doing my best to put together an installer for our C# app using Wix but have hit a block with the following problem.
By default the application is installed in the ProgramFilesFolder ...
1
vote
0answers
245 views
WIX WixUI_InstallMode property and brackets weird behavior
I faced very strange behavior of WIX installer conditions, using WixUI_InstallMode property.
It behaves completely different in conditions of element and in conditions of elements. For example, this ...
1
vote
0answers
157 views
WIX - Unable to patch an installation after it has been patched
need a little help here...
The Error : The upgrade patch cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade patch may update a ...
1
vote
0answers
120 views
WIX: Change configuration files even if features set is not changed
I have a wix installer which installs several web sites. Each website is a feature. There is a custom dialog which allows to enter database connection strings. Each feature contains a component which ...
1
vote
0answers
43 views
Size and Version fields in Programs and Features
I have wix setup.
When I set those properties
<Property Id="ARPNOREMOVE" Value="yes" Secure="yes" />
<Property Id="ARPSYSTEMCOMPONENT" Value="yes" Secure="yes" />
in Programs and ...
1
vote
0answers
95 views
How to create an upgrade-only MSI file using the WiX toolset?
I have a WiX project that creates a product installer for Windows (.msi package). Now I have a scenario where I need to create an update package (on Windows) that only works if the product is ...
1
vote
0answers
229 views
TFS build server issues with Wix - Undefined preprocessor variable '$(var.Interview.ProjectDir)'
I'm trying to set up a build server for our project so that the builds can be automated.
I can build locally and I have just checked in the build, yet I keep getting this error
...
1
vote
0answers
100 views
WiX: Manually set the cost of a feature
I have a non-standard feature in my installer, which doesn't contain any installable files, but triggers a custom action instead. As this feature doesn't contain any official file components, the ...
1
vote
0answers
27 views
Reading data using select in wix
We are creating a installer package and we have
requirement were we should be able to read values from table
using select. I have searched a lot but didn't find anything to query the table.
...
1
vote
0answers
79 views
How to fail installation if WebAppPool doesn't exist?
I use the following Wix code to create a WebApplication in IIS and assign it to a specific Application Pool.
<iis:WebAppPool Id="AppPool_Wcf" Name="$(var.WCF_APP_POOL)" />
<iis:WebSite ...
1
vote
0answers
192 views
How to set product code of Wix bootstrapper install
I'm using a bootstrapper to check for the existence and if needed install a set of 3rd party product installs. It then installs my product. I would like to include an uninstall shortcut for the full ...
1
vote
0answers
288 views
Remove XML element using WiX XmlConfig
I have this XML file:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<dependency>
...
1
vote
0answers
183 views
WIX FileSearch Name purpose when used inside RegistrySearch
Let's suppose we need to file if a dll is installed on machine. WE can use code
<Property Id="IS_DLL_PRESENT" Secure="yes">
<RegistrySearch Id="ManDMSRegistrySearch" Root="HKCR" ...
1
vote
0answers
122 views
How do I link my WIX Project Linker to a resource path that contains spaces?
Other posts point toward an answer, but none of the answers work in Visual Studio 2010.
The latest version of WIX doesn't work out of the box as it's supposed to when wiring up to a project ...
1
vote
0answers
153 views
WiX: using light.exe is there a way to write Config Variables to a log file or text file during the creation of .msi package
we currently have ConfigVariables.wxi file which we include in our product.wxs file. One of the variables is ProductCode which is an automatically generated GUID
<!-- Auto-generate GUID for ...
1
vote
0answers
501 views
Cannot load WiX projects after installing the VS2010 Web Publishing Updates
I installed the VS2010 web publishing updates yesterday, and now whenever I try to load a WiX setup project (all showing as unloaded in solution explorer) I'm getting the error:
The imported project ...
1
vote
0answers
82 views
Passing file name in Custom Action using WiX
I want to pass a file name in the argument of Custom Action. These files are getting installed into the system. Can I pass the component id of these files rather than passing hard coded name?
