Browse by Tags
All Tags »
Windows Installer XML (WiX) (
RSS)
This was an interestingly annoying issue I came across with Windows Installer, when you use the ReserveCost Element to specify the disk space by populating the disk cost for your components in the ReserveCost Table. Here is the scenario: 1) You have a...
Here is a major gotcha that you will encounter when you try to configure your product with deferred actions using configurable properties during the installation. Deferred actions do NOT have access to the MSI session objects which means that if you try...
Again there is absolutely no documentation out there on this, WiX provides out of the box support for doing this though. Just define a custom action into wixca.dll with entry point PrintEula <CustomAction Id="PrintEula" BinaryKey="wixca"...
This is one of those elusive topics whose answer is hard to find with googling around, but you will discover that it’s pretty easy, again if only you knew the magic words. Define this in your Main.wxs : <Property Id="_BrowseProperty" Value="INSTALLDIR...
WiX tools, Logging and Silent installation...
Since WiX is still fairly new and is an Open Source project, don’t be surprised if you hear a lot of noise about the little or no documentation available . In this and the coming few posts I am going to start posting some of the challenges/ roadblocks...
WiX is an XML based wrapper around the Windows Installer which lets you create Installer packages without you having to get your hands too dirty with the obscurities of dealing with the Windows Installer directly or for that matter if you want to cut...