Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
129 views

I have looked through similar questions on the forum and have found no solution to my problem. I am trying to call dpinst using a custom action and get the error: "Error 1721. There is a problem ...
EBB's user avatar
  • 1
0 votes
0 answers
144 views

I have a problem starting a process to execute installation of specified installer in quiet mode with no restart. This is my code: public int InstallUpdate(string installerLocation) { Process p = ...
Tamara Vučić's user avatar
1 vote
1 answer
277 views

First, thank you for this fine piece of work. I cannot for the life of me figure out why I cannot get a SINGLE custom action in WixSharp to compile. Here a very trimmed down example of code which ...
Vector's user avatar
  • 419
0 votes
0 answers
38 views

I'm working on an NSIS installer and encountered an issue where the progress bar appears behind the bottom bar (status bar) when the installer is running in Korean,Japanese and Chinese OS Languages. ...
Abhiroop Saha's user avatar
1 vote
0 answers
203 views

I'm creating a WiX installer for a multi-process application where several of those processes use .NET 8. I need to include the .NET 8 desktop runtime installer because the end users cannot be ...
PizzaToCode's user avatar
-1 votes
1 answer
121 views

TL;DR bindingSource.CurrentChanged event seems to fire OK during IDE debugging, but, not in the final installed, 'Release'-compiled application - other event handlers seem to behave as desired. Goal: ...
bkwdesign's user avatar
  • 2,189
0 votes
0 answers
53 views

I created an msi for an application that relies on a deferred custom action to do a few necessary things. <CustomAction Id="MyCustomAction" Directory="INSTALLFOLDER" Execute=&...
José Neto's user avatar
0 votes
1 answer
135 views

Is there any good article that explains more about RestartManager and how to make the applications aware and handle the special messages in order to shutdown properly? I have two applications that are ...
Albin Ibraimi's user avatar
0 votes
1 answer
127 views

I have the following problem: I have a custom deferred action which should run a powershell command, but it does not resolve the properties given in the value attribute of my SetProperty element. I ...
Temeos's user avatar
  • 46
0 votes
1 answer
247 views

The Target is HAcomms.exe in the Application Folder directory. Everything looks right, but the icon that gets installed has an invalid target: The target is just "HAcomms" which is not &...
S. J.'s user avatar
  • 1,128
0 votes
1 answer
84 views

In a Windows Installer msi package, created with WIX, I want to execute a custom action (written in c#) that executes a powershell script file that is installed by the installer. The script needs ...
R. Beiboer's user avatar
1 vote
0 answers
1k views

Over a year ago I started building a tool for internal use and distribute it through an MSI and setup.exe (the setup.exe is necessary to check if the current version is already installed or if an ...
CDRO's user avatar
  • 150
0 votes
1 answer
149 views

I read an article here and understood that there are differences between packaging JavaFX 11 and Java 11, from my project. However, I still don't know how to do it with my project. Mine is built in ...
Shemuel's user avatar
  • 21
1 vote
1 answer
203 views

I have a WiX v4 project which uses a bootstrapper, declared in a <Bundle>. I want to set the default InstallFolder based on the program files folder, so I've structured it like this: <Wix ...&...
el_zilcho's user avatar
  • 298
0 votes
1 answer
208 views

I am attempting to create an installer to upgrade my software to version 2.0.0.0 using InstallShield 2022. I have changed the Product Version from 1.0.38 to 2.0.0.0, got a new GUID for the Product ...
KingGizzard237's user avatar
0 votes
1 answer
141 views

Overview: I am making an installer for a web app build on asp.net 8. I started with just doing an msi installer (Package) with a custom UI. I then wanted to also include the installers for the dotnet ...
Temeos's user avatar
  • 46
0 votes
1 answer
57 views

i am getting this alert when i try to install .msi file.. whats wrong? i am trying to install this https://awscli.amazonaws.com/AWSCLIV2.msi its not just this msi it seems like i have an issue with ...
Tauseed Zaman's user avatar
1 vote
1 answer
486 views

My C++ application is built with Visual Studio 2022 v17.4, which has MSVC tools 14.34.31933, and then Windows installation package .MSI is created with WiX Toolset. Product.wxs file contains the lines ...
Fedor's user avatar
  • 24.7k
0 votes
0 answers
226 views

I want to install Delphi 11 automatically. I use a .cmd script to start the installer in silent mode, and perform some additional tasks. It works if Delphi was already installed because it finds the ....
Error - CPU Not Foud's user avatar
2 votes
0 answers
742 views

I have a Wix v5 msi and bootstrapper (.exe) project. When I install the MSI and try to run the installed application (.exe) it keeps saying: "You must install .NET Desktop Runtime to run this ...
juFo's user avatar
  • 18.7k
0 votes
1 answer
150 views

I have a MSI that installs a Zabbix Agent 2, and their documentations states that in order for us to install custom plugins we need to: Copy the plugin into the MSI packages; Edit configurationfiles ...
Raul Chiarella's user avatar
1 vote
0 answers
132 views

I have the same problem as the following questions, i.e. wix created, and signed msi installer is displaying its random name while in UAC. BUT I am not using the SignTool to sign, rather the Set-...
VassilisM's user avatar
0 votes
1 answer
40 views

I am attempting to add a hyperlink to the bottom text of the license page. For example: !define MUI_LICENSEPAGE_TEXT_BOTTOM "Click this link -> http://www.google.com/" !insertmacro ...
Robert Higgins's user avatar
2 votes
1 answer
1k views

In tauri.conf.json in bundle I have updated all icons but still app.exe file is not showing the icons. Is there any other way to update the icon? In tauri.conf.json "icon": [ "...
Mahendranviji's user avatar
1 vote
1 answer
193 views

I'm trying to create an installer with WiX that has a step that writes to a network drive via a UNC path, but no matter what I do, I run into the error "Could not access network location": ...
Ani's user avatar
  • 114k