47 questions
Tooling
0
votes
0
replies
14
views
with wixtoolset 5, how to remove floder only at unistall but not in major upgrade
when I create folder under CommonAppDataFolder for the app I want to remove it with msiexec uninstall.
Problem is that app rotates logs and after update with major upgrade logs and sub directories ...
1
vote
0
answers
74
views
Wix 5 - Installer BootstrapperApplicationRun() Runtime Error "value does not fall within expected range"
I'm new to using Wix 5.02 and trying to launch my own custom installer UI using the Wix's ManagedBootstrapperApplication.
Following the examples available on https://docs.firegiant.com/wix/whatsnew/...
0
votes
0
answers
31
views
How can I prevent my WiX installer window from shifting upward when the header is double-clicked?
I’m building an MSI installer using WiX Toolset (v5).
When I double-click on the installer’s title bar (header), the installer window shifts slightly upward on the screen instead of staying fixed. I ...
1
vote
0
answers
48
views
How to remove the “Print” button from the WiX License Agreement dialog?
I'm building a custom installer using WiX Toolset v4, and I want to remove the Print button from the default License Agreement dialog (LicenseAgreementDlg).
My installer uses the WixUI_Minimal built-...
0
votes
1
answer
116
views
The localization identifier has been duplicated in WiX toolset v5 bundle
I try to localize a WiX toolset v5 bundle installer. I upgraded from WiX v3 where this works fine. But now I get lots of errors like:
The localization identifier 'Title' has been duplicated in ...
0
votes
1
answer
71
views
How can I add a README note (from a .txt file) to a Wix installer before the Finish button?
I'm creating a Wix installer and I want to show a README note (stored in a .txt file) before the user clicks the Finish button.
I tried using the WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT property to allow ...
0
votes
1
answer
36
views
Wix StartupFolder Shortcut shows as "Icon.ico" in Task Manager
I install a Shortcut with my Wix Installer like this:
<Shortcut Name="Tray Application"
Directory="StartupFolder"
...
1
vote
1
answer
475
views
Can the Heatwave Community Edition extension for Visual Studio be used to generate installers, with no costs at all, in an enterprise environment?
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 ...
0
votes
0
answers
51
views
How to support downgrades in a WiX 5 Bundle with a MsiPackage
In a WiX bundle that includes an MSI with <MsiPackage>, how can I allow downgrades?
The MSI package supports downgrades, and this actually works when installed / downgraded manually using ...
2
votes
3
answers
4k
views
How to install WIX toolset for version 5 [closed]
[![enter image description here][1]][1]I am currently having WIX v3 but I want to install V5. Can some one help me how to install V5.
Tried using NuGet but shows only V3 Git download path is not ...
1
vote
3
answers
589
views
Wix v5 UI - Adjusting minimal template
Armed with only the Wix docs, I'm struggling immensely to put together a basic UI for my installer, to the point where I'm evidently failing to grasp some foundational ideas here.
Reading https://...
0
votes
2
answers
190
views
MSI generated with WIX5 not upgrading executable on major upgrade
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.
...
0
votes
1
answer
578
views
WiX Toolset 5 - Web API Installer - Files from publish folder
I am in the process of building a WiX Toolset 5 installer for a .NET 8 Web API project. I am familiar with older versions of WiX.
The problem I have is that when I do a dotnet publish this creates ...
0
votes
1
answer
59
views
Wix5 : CustomAction run at uninstall time too
In Wix 5
Why both actions are called both at install and uninstall ?
<CustomAction Id="InstallConfigFile" BinaryRef="dllExecutionTest"
DllEntry="...
0
votes
1
answer
351
views
Wix 5 BootstrapperApplication not prompting for installation directory
I am using a bundle to install my application. My MSI prompts for an installation directory however when run via the WIX bootstrapper, the prompt for the installation directory does not display. I ...
0
votes
2
answers
120
views
Detecting .NET version installed
I'm using WiX Toolset 5 and I need to detect the version of .NET installed on a machine. I have code to pull the value out of the registry:
SOFTWARE\dotnet\Setup\InstalledVersions\x64\sharedhost
but ...
1
vote
2
answers
292
views
wix UI not showing custom Dialogue or print button error
I upgraded my current installer from wix 3 to wix 5 and now my custom dialogue shows the Error:
"Print button of LiecenseAgreementDlg does not have an event defined in the ControlEvent table. It ...
0
votes
2
answers
568
views
Wix V5 HarvestDirectory transform not getting applied
I am migrating a product installer from Wix v3 to WiX v5.0.1 and facing issues applying the transform over here,
I have specified the Tranform path in the wixproj file like this,
<ItemGroup>
...
0
votes
1
answer
722
views
Migration from WiX 4 to 5 and I lose the "SourceDir" magic
Disclaimer: I accept that I have trouble navigating the docs at times and don't do MSIs for a living.
I have a solution with a bunch of projects, one being the Installer and one - for the sake of this ...
2
votes
0
answers
742
views
[Wix Toolset][Wix5] "You must install .NET Desktop Runtime to run this application"
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 ...
0
votes
1
answer
101
views
Why FileSearch when used under Module is not working : Wix Toolset v5
<Property Id="FILEEXISTS" >
<DirectorySearch Id="CheckFileDir" Path="[SourceDir]" Depth="0" >
<FileSearch Id="CheckFile" ...
0
votes
1
answer
680
views
wix toolset (v4, v5) - error WIX0204: ICE64 The directory is in the user profile but is not listed in the RemoveFile table
I have an error when I create, then validate my msi.
error WIX0204: ICE64: The directory dB83QhXjqRcvjpneY0SXNy5LuEUs is in the user
profile but is not listed in the RemoveFile table.
It seems to be ...
1
vote
1
answer
1k
views
WiX 5 with .NET 8 CustomAction?
I have a WiX 4 project and it's referencing a CustomAction that is currently .NET Framework 4.8. I plan on upgrading the WiX project to WiX 5.0.0. Can I upgrade the CustomAction project to .NET 8 when ...
1
vote
0
answers
324
views
Publish target in an SDK style WiX5 project doesn't work?
I have a similar problem as this Post
I have a WiX 5 Setup Project UserInterfaceSetup.wixproj that is intended to install my WPF-Razor Project with Project file UserInterface.csproj and Publish ...