Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
60 views

I have multiple projects in solution file - Proj1, Proj2, Proj3, Proj4.... The projects have cross references. Proj1 and Proj2 have references to Proj4. Proj4 has reference to Proj3 and so on. They ...
0 votes
1 answer
139 views

I am trying to launch my installed app after the installation is completed. I followed what is suggested here: https://docs.firegiant.com/wix3/howtos/ui_and_localization/run_program_after_install/ ...
0 votes
0 answers
103 views

I'm complete new to windows development, what Im trying to do is to create a installer for windows users that require admin privilige and create shortcuts. The program is developed by python and ...
0 votes
0 answers
20 views

I am trying to register my plugin for different ZWCAD versions (e.g., ZWCAD 2024 and 2025) using a WiX installer. <RegistryKey Root="HKLM"Key="Software\ZWSOFT\ZWCAD\2025\en-US\...
0 votes
1 answer
60 views

I am trying to have my Wix installer register my ASP.NET Core app as a Windows service during installation. This is part of my program.wsx: <Fragment> <Component Id="...
0 votes
0 answers
57 views

I used to have a msi with its cab file embedded simply using <Media Id="1" Cabinet="cab1.cab" EmbedCab="yes" /> And I got a single msi file, which is good. Now a ...
0 votes
1 answer
65 views

I'm trying to create a WiX v4 installer which will display different EULAs depending on the region. When I provide a static text using: <Control Id="LicenseText" Type="ScrollableText&...
0 votes
0 answers
50 views

I'm migrating an installer from InstallShield to WiX v4 with Bundle and having issues with minor upgrades. Here's my scenario: Current Versioning Scheme: Format: x.y.z.a where: x = major version (...
1 vote
1 answer
182 views

When I create a Merge Module with WiX, the wixproj file has <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' " /> <Import Project="$(...
0 votes
0 answers
87 views

I have an application that can be launched by right-clicking on a file an accessing the context menu entry. Now on Windows 10 etc this is easy to deploy by installing the below registry keys with my ...
0 votes
1 answer
47 views

Wix harvesting doesn't include .runtimeconfig.json file into .wxs file. My app doesn't run without this file. How can I include it? What can I do in general if Wix doesn't harvest certain file that I ...
0 votes
1 answer
84 views

I have created a MSI installer for reSLIRP, but it installs the application under C:\Program Files (x86), instead of under C:\Program Files. Everything I have found googling has not worked. For ...
0 votes
1 answer
111 views

I am not looking to create .MSI installers in Visual Studio 2022 C#, only to extract information from .MSI files. The InstallShield Automation Interface is way out of date, and I have told them this. ...
0 votes
1 answer
184 views

I am adding a shortcut in desktop using WixV5 but icon is not coming. How can I add an ICo to shortcut. The code I used is <Component> <File Source="../camviewer.exe" /> ...
6 votes
2 answers
3k views

I tried to create an MSI which is having and exe in it. Used the Bundle option in WIX. While doing that getting an error. Can somebody help me fix this issue. Below is the code: <Wix xmlns="http://...
0 votes
1 answer
224 views

I'm trying to create a new Wix Package for an MSI setup with the Heatwave extension for Visual Studio 2019. In Visual Studio I create a new MSI Package project using Heatwave. Immediately after ...
5 votes
4 answers
13k views

I am using WiX 3.5 and making an installer. I have used heat.exe to bundle all the files. It produced a WiX file. I referred in main wxs files as componentgroup ref. When I build my installer, it ...
0 votes
0 answers
29 views

I just want to create some custom input fields for my wix installer. This code is working fine: <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas....
0 votes
0 answers
161 views

I'm currently trying to implement a custom action that executes a PowerShell script after the installation. My thought about what exactly the MSI file should do is: Install/copy the Powershell script ...
0 votes
0 answers
31 views

I have created an MSI Wizard, that installs my software. During the process, it asks the user to input a URL. I need to write this URL later into the settings.json file of the asp.net core app my wix ...
0 votes
0 answers
23 views

I am using a WixStandardBootstrapperApplication.HyperlinkLargeLicense as the application ref in my installer. It is a WixStandardBootstrapperApplication type with a logo, I have a message that ...
2 votes
1 answer
614 views

I'm attempting to update the following Wix Bootstrapper project from V3 to V4 but after the update the V4 setup.exe never displays UI (only the splash screen): <Wix xmlns="http://wixtoolset....
0 votes
0 answers
25 views

Windows 11. When I making Wix project, I need to know a given software's path under "C:\Program Data\Package Cache", how to find that absolute path?
1 vote
2 answers
433 views

I would like to give the user the option to delete the configuration data stored in the APPDATA folder on uninstall. I have found this answer but it's quite old. There is another answer in this ...
0 votes
1 answer
40 views

I have a master installer bundle that calls other WiX installers. However on the uninstallation, I would like the uninstall operation to uninstall all of the child packages. I am using a bootstrapper ...