1
vote
1answer
56 views

Why are properties ignored on uninstallation, if they have not been set on installation?

I have creeated an installer, which installs a database using the sqlstring element provided by the WixSqlExtension. Here is a sample of the code: <ComponentGroup Id="DatabaseCreation" ...
2
votes
1answer
65 views

how to find the status of executed MSI from the command prompt

I have created an installer using WiX and it will be executed using the command prompt. What I'm looking for is a way to check the status of the same when it is executed using the command prompt ...
0
votes
1answer
79 views

ProgramFilesFolder Set to C:\ when using /a switch for msiexec

I have an .MSI installer that I created using WIX and works fine when opening the file from windows explorer or installing from a command window using msiexec /i. The problem is that I need to use /a ...
0
votes
1answer
95 views

Writing log file in temp folder by IExpress

I'm using IExpress to generate .exe installer. I want to make it generate log file into temp folder like this. msiexec /i MyPackage.msi" /l*v "%temp%\MyPackge.log" but after a bit of research I ...
2
votes
1answer
996 views

Why does my WiX installer need an empty CreateFolder to conditionally update an Xml file?

TL;DR: Why do I need an empty <CreateFolder/> element in this conditional component in order to make it work? I'm putting together a simple WiX based installer for an in-house application. This ...
1
vote
1answer
486 views

Wix - how to override UpgradeCode when installing an MSI file

I am writing a WIX installer with 2 requirements: implement an upgrade rules (which I did successfully with <MajorUpgrade> or <Upgrade> table keep a way to force installation of an old ...
4
votes
1answer
343 views

Uninstalling a particular feature using msiexec

I installed an test application which has two features (FirstFeature & SecondFeature). I want to remove only one feature (SecondFeature) from the application. I tried using REMOVE property in ...
1
vote
1answer
485 views

Wix CustomAction to run only in basic mode

My wix 3.5 setup can be downloaded and run in normal installation situation. I also use the same msi for updates and call msiexec with /qb (basic quiet interface) from within the app itself. All is ...
2
votes
1answer
420 views

WIX MSI - PROPERTY override precedence

Any help will be much appreciated. I'm writing this WIX installer to get an MSI to install a web app on our servers. Within my app, I have this PROPERTY - "WEBDIR". I use this property later in my ...
1
vote
1answer
233 views

How do I take a command line parameter and add it to the registry using wix installer?

I have a WIX installer script and I want to be able to let the user of the resultant MSI file to be able to set the default language, product key and user information during that command line call. ...
0
votes
1answer
665 views

How do I set the .NET Framework version used to run a MSIExec Custom Action

I am using WiX to create a MSI that calls a managed Custom Action (CA) written with Votive in VS 2008. The CA targets .NET 32 bit Framework 3.5. When I run the setup it fails loading the CA since it ...
3
votes
1answer
746 views

What does it mean when the MSI log file says “Note: 1: 2729”?

I ran an install like this: msiexec /i Module.msi /l*v msilog.log And in the resulting logfile, I got a bunch of message like: Note: 1: 2729 . What does it mean? Is there a rosetta-stone ...
6
votes
2answers
2k views

Install multiple instances of an MSI with dynamic instance name

Our product has an MSI installer (written in WiX) which basically copies some files into a folder c:\ourproduct and installs a windows service "ourwindowsservice". We'd like to add support for ...
1
vote
2answers
667 views

Can I use WiX to create an MSI whose sole purpose is to uninstall the software?

I've delivered version 1.0 of my software with a WiX-generated installer, and now I want to deliver/disseminate version 1.1. If possible I would like to avoid the situation of telling people to remove ...
0
votes
1answer
699 views

After remotely running an msi using psexec and msiexec it doesn't show in Add/Remove programs

At the company where I work, we're setting up continuous integration and as part of this we want the daily build cycle to build installers and run them on a staging server. I've written the ...
0
votes
1answer
224 views

Help with ensuring a bootstrapper is used but having upgrades work

We have an MSI we have authored in WiX 3.5.2030.0 and targeting Windows Installer 4.0 (for MSIUSEREALADMINDETECTION support). We have a property that we have defined in the MSI to enforce use of a ...
1
vote
2answers
2k views

How to set a check box to “unchecked” from the msiexec command line?

I have an msi (authored with WIX) that has a check box bound to a custom property (call it MY_PROPERTY). I would like to run this msi from the command line, specifying 0 (unchecked) or 1 (checked) ...