Skip to main content
Filter by
Sorted by
Tagged with
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&...
Dmitry Kosovets's user avatar
0 votes
0 answers
108 views

I am trying to develop an installer for a WPF application using Wix. So far, I have developed an installer that copies the executable file and DLLs, and a runtime Python folder in Program Files. There ...
Denis Ivanov's user avatar
1 vote
1 answer
475 views

Looking into Wix v4 and v5, coming from v3, their official tutorials in FireGiant's site use HeatWave Community Edition. I need to create an installer of a software from the company I work in. I don't ...
PetF47's user avatar
  • 13
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 ...
salva's user avatar
  • 10.3k
0 votes
1 answer
48 views

Im currently working on my wix project and its working so far. But when i validate the msi, I have these error messages: error WIX0204: ICE43: Component DesktopShortcut has non-advertised shortcuts. ...
Luca Jan Montinaro's user avatar
1 vote
0 answers
30 views

I am using this setup.exe to install the application by passing MSI parameters directly to the MSI via the command line: setup.exe/s /v"/l*V installer.log INSTALLDIR="""C:\Program ...
Harsh Upparwal's user avatar
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 ...
innom's user avatar
  • 1,145
0 votes
0 answers
26 views

When using WixUI_installdir, after selecting a directory, the installer expects the user to create a new folder to download to, instead of using the already specified name. For example: <Wix xmlns=&...
Solsen165's user avatar
0 votes
0 answers
360 views

I have a.net WPF project. I would like to build a set up project so that I create an MSI for installing the build on other machines. I have tried creating a Setup project and added Project Output, ...
sunsilk85's user avatar
0 votes
1 answer
75 views

I followed this tutorial for making my .NET Core Windows service have an installer. Before the tutorial, I published the files for the entry point project using the default folder publishing profile ...
javery's user avatar
  • 41
0 votes
0 answers
57 views

So I've got this super simple script that uses msiexec to install a MSI, but it doesn't take the one of the flags. This is the the format that installs correctly: msiexec /qn /i "C:\temp\...
user208160's user avatar
0 votes
0 answers
34 views

I have an MSI (built with Wix 3) already distributed to customers. Among others, the product has a directory named Reporter that contains two files, A and B. A is the implicit KeyPath, because it is ...
Vlad Valceanu's user avatar
0 votes
2 answers
102 views

I am trying to put together a simple wixl config. I have a 150mb exe, and I need to generate an MSI for easier deployment. When run, the MSI just needs to copy embedded exe over to the system and ...
Josh Brower's user avatar
0 votes
2 answers
190 views

Package Version is changed from "1.0.1" to "1.0.2" MajorUpgrade is scheduled as "afterInstallExecute". Running only the MSI 1.0.2 installs the version correctly. ...
H.A.H.'s user avatar
  • 4,282
1 vote
0 answers
183 views

Disclaimer: This code is not a fully functional snippet, yes I am aware of, anyhow I think the question is obvious enough. I am using netfx extension of the Wix Toolset project. <netfx:...
KargWare's user avatar
  • 2,271
-1 votes
1 answer
34 views

I have a wix project that generates an output msi, inside the project i have set the output name using the tag. But the msi get's built with the project name instead. The msi name also changes when i ...
Anandu Ramachandran's user avatar
0 votes
1 answer
491 views

I am using WiX to create an installer for my wpf application (I am new to this). I need to detect and install the .Net core 6.0.0 and Windows Desktop runtime 6.0.33 using online setup. Shipping ...
Fatima Ali's user avatar
0 votes
0 answers
39 views

I have a script custom action that is scheduled to run during installation and upgrade: <InstallExecuteSequence> <Custom Action="CallInstaller" Before="InstallFinalize"...
José Neto's user avatar
0 votes
2 answers
86 views

I am working with Advanced Installer and need to create a dynamically named log file for the installation process. The log file's name should include a timestamp to differentiate between multiple ...
Doğa Koçak's user avatar
0 votes
1 answer
143 views

I want to create an installer using Wix5. The software we want to install depends on another software and has some files which depend on which version of the prerequisite software is installed. So let'...
Delerien's user avatar
1 vote
1 answer
91 views

The output of the setup wizard is an .msi file, when I run the file and in the installation folder selection dialog, the path that is showing there is what I want to change programmatically which is ...
Hagop's user avatar
  • 11
3 votes
3 answers
171 views

I have had InstallAware 12 for ages as part of Embarcadero product years ago. This is no longer available from Embarcadero downloads, and InstallAware is very expensive for a hobby developer. Hence, I ...
Barry Andrews's user avatar
0 votes
1 answer
119 views

My solution has 3 projects with a project for CustomInstaller, a project for my WPF app and my Setup Installer. After building my setup installer and running it, in the middle of the process I do have ...
Andrew Paes's user avatar
  • 2,022
0 votes
1 answer
195 views

I have a windows installer built using WiX burn. When I try to install the app by clicking on the .exe folder, it searches for msiexec.exe in the directory where the application installer is located. ...
hellokk's user avatar
  • 43
1 vote
2 answers
129 views

I am trying to create a Windows installer for a VB.net program in Visual Studio 2022. The program creates an input file for a separate processing exe, called via shell(), then reads/parses the output ...
lowriderdog37's user avatar