Tagged Questions
1
vote
2answers
128 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">
...
3
votes
1answer
775 views
Copying directory structure using wix
So I have a huge file structure which I want the installer, I am building using wix, to copy on the client location. Currently I am typing it out like:
<Directory Id="xyz" Name = "abc FileSource ...
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 ...
1
vote
1answer
1k views
WiX Installer: How to switch to repair-mode if already installed?
I am new to WiX 3.0 and writing my first installer based on WiX (coming from Wise).
If the product is already installed (in the current version), I want the installer to switch to "repair"-mode ...
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 ...
1
vote
1answer
2k views
WiX: Calling Custom Action on Merge Module only if Feature is selected
I have a WiX installer which has 3 Projects. 2 Creates Merge Moduels, 1 Creates the installer. The code in the mergemodules should only be executed if the corresponding feature is selected. Is there ...
1
vote
1answer
471 views
Install Microsoft KB951608 with WIX
On our server (win 2008 r2) we enabled the setting "force network authentication" to enforce that the client must support the NLA, because the port 3389 is directly reachable from the internet. But on ...
10
votes
5answers
2k views
Dynamically create WIX files without having to edit the wix files manually
Suppose you release the next version of your software, you will have to manually update your WIX files to remove obsolete files and add new files, etc.
My use case is as simple as "recursively add ...