Tagged Questions
2
votes
1answer
173 views
WIX Application pool incorrect after install or Upgrade
In our WIX installer we create several application pools for various components, however our .net 1.1 application pool always ends up being on .net 2.0 after the install has finished.
This causes us ...
0
votes
1answer
129 views
Changing behaviour of .NET 3.5 bootstrapper generated by WIX
i've got following problem:
I have builded an installer with WIX. This installer contains a bootstrapper for .NET framework 3.5. First time installing the bootstrapper works like a charme. .NET ...
1
vote
2answers
131 views
Installer with WiX (pre-installed by Admin and Updated by User)?
We've created an installer using WiX.
In the registry we save it under HKCU (see example).
Desktop Icons and everything is installed for the Current User.
<DirectoryRef Id="INSTALLDIR">
...
2
votes
1answer
205 views
Can Wix3 check if a service exists?
Does Wix 3 have a built in way to just check whether a service exists? The closest guess I can come up with is using ServiceConfig and trying to detect a failure.
2
votes
1answer
408 views
WIX: Running a custom action based on the success of previously executed custom action
I have the need to restart the Windows Explorer process during the installation. Currently we force the user to reboot to ensure that the Explorer process is really restarted, but I would like to be a ...
2
votes
2answers
251 views
Detemining newer version of executable in Wix
We have a software that has couple of executables inside. One of the executables is Windows service, and it doesn't change that often, usually we release many updates to the main executable, but the ...
1
vote
1answer
875 views
Create patch file using msimsp.exe
I have setups created by WIX.
I want to prepare patch installer to install/update the files that have been changed in the newer version.
I tried to create patch using WIX code, but was not ...
3
votes
1answer
74 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 ...
0
votes
2answers
1k views
Preserve registry settings when upgrade
I am using WiX 3.0. I am trying to preseve all my registry settings when doing upgrade.
I found the following link
http://www.mail-archive.com/wix-users@lists.sourceforge.net/msg28844.html
I prefer ...
0
votes
1answer
171 views
WIX installer does not display disk cost in windows 7
I am using WIX installer for creating setups.
The disk cost feature works fine on windows server 2003 but it shows 0(zero) KB for the feature. It shows 'compiling cost for the feature'
Can someone ...
0
votes
1answer
206 views
Warning, when you run same installer twice (WIX)
How I can perform showing message, that'll tell to user >>This version has already installed<< or some another warning message, when user try to run the same installer twice?
1
vote
1answer
2k views
Running copied files in WiX using a custom action
I'm creating an MSI installer using WiX and I have, say, a *.bat file that I'm copying to SomeFolder2 under %temp% (something like the code snippet below...)
...
<Directory Id='TARGETDIR' ...
0
votes
1answer
296 views
How to include files in an msi installer using wix?
I'm pretty sure that this is a basic question but I really don't know where to start... so any help would be really appreciated.
I'm creating an msi installer using WiX but how do you include, say an ...
11
votes
3answers
5k 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?
2
votes
2answers
394 views
WiX 3.0 Merge Module: meaning of Source attribute
What is the purpose of the Source attribute? Have a look at this snippet:
<Component Id="MyComponent" Guid="123456789-abcd-defa-1234-DCEA-01234567890A">
<File Id="myFile" ...
0
votes
1answer
170 views
WiX - How do I prevent ComPlusAssembly being unregistered during uninstall?
As part of my Installer, I am adding files to an existing COM+ package. I have defined a ComPlusApplication underneath my Product element, which has the name set to a property - I then have a custom ...
3
votes
3answers
5k views
Creating a MSI patch (.msp) by hand?
Our team has recently been considering pushing out a minor registry fix to users to modify one particular problematic key. Pretty straightforward stuff, just needed to update 1 key/value inside the ...
3
votes
1answer
591 views
Wix: How to create a desktop shortcut pointing to a virtual drive under Computer
I would like to add a shortcut on the desktop which points to a virtual drive mounted under "Computer". This drive doesn't have a letter associated with it. I've successfully added a link to an ...
3
votes
1answer
692 views
Wix Howto determine if a directory exists during installation?
Is their any chance in WiX to determine if a certain directory exits when the installer is running? I guess i have to use some sort of custom action, unfortunately i don't know how! Furthermore i ...
6
votes
3answers
679 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 ...
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
2answers
615 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
485 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 ...
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 ...
1
vote
1answer
131 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?
3
votes
2answers
280 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
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 ...
0
votes
3answers
199 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 ...
0
votes
1answer
389 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).
...
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 ...
1
vote
4answers
646 views
How can I require at least one of two optional components in WiX?
I am using WixUIFeatureTree to offer the user an option of what components of my application they want to install... One of my features has two optional features within it, at least one of which ...
2
votes
1answer
361 views
How do I get the location of a file in a WiX Script
How do I make a custom action that references a file on the command line?
I have the custom action accessing the MYSQL properties correctly, but I haven't figured out the incantation to access the ...
1
vote
1answer
637 views
Detecting and suppressing REINSTALLMODE=v switch
Summary:: is it possible to detect REINSTALLMODE=v switch (passed to the msiexec) from within the WiX script code and disable it?
Story.
Our software has been using auto-updates delivered with MSI ...
2
votes
3answers
4k views
WiX condition properties passed from command line don't work?
I have a property for whether to install shortcuts that need to be passed via command line arguments. The conditions seem to work when I set the properties within the wxs file, but they seem to be ...
2
votes
2answers
720 views
Detect if an assembly is in the GAC via WiX 3?
I'd like to detect in WiX 3 (preferably via a Condition) whether a particular assembly is in the GAC. I know the name, version, and public key token of said assembly. Is there any built in way to do ...
1
vote
1answer
326 views
“Bad Image” problem with Heat in Wix 3.0 with typelibs
When using heat (from Wix 3.0.4805.0) to generate Wix documents off of a typelib that's generated by Visual Studio, I have been getting an error. A window pops up that says:
'heat.exe - Bad ...
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 ...
1
vote
3answers
1k views
Add a summary information to WiX generated MSI
How to add (or change a default values) a summary page information to a WiX-generated MSI file?
Summary page is the tab page which is visible if you right click on the MSI file in the Windows ...
2
votes
1answer
2k views
Wix Major Upgrade, what am I doing wrong?
Upgrades work fine if no components have changed, but any time a component changes the upgrade fails and it requires the user to manually uninstall and reinstall.
Some snippets:
<Product Id="*" ...
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 can I do this?
9
votes
1answer
7k 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 ...
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 ...