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

I would like to automate the installation of Adoptium. So far, I have been able to download the latest version of the .msi $baseURL = "https://api.adoptium.net/v3/assets/feature_releases/11/ga&...
YorSubs's user avatar
  • 4,238
0 votes
1 answer
156 views

I was developing an application that eventually was going to be configured as a windows service. Several instances of this application can be run on a single server. So right now we just create ...
user24699486's user avatar
0 votes
1 answer
53 views

I'm working on a C# Winforms client application that interacts with a MySQL database, and I'm looking for guidance on how to create an installer for it using Visual Studio. The application and the ...
f_dippiton's user avatar
0 votes
2 answers
421 views

Azure pipeline fails on the SSMClientToolsSetup@1 task: Starting: SSMClientToolsSetup ============================================================================== Task : Installer for ...
Yash Dutt's user avatar
  • 217
0 votes
1 answer
137 views

I'm currently exploring WiX v4 and I'm facing a small challenge in my scenario. My scenario: I've developed an installer for a Windows service. Prior to the installation of this service, I need to ...
arsenii41.2hz's user avatar
5 votes
2 answers
1k views

I have a MSI installer for my WPF application. Usually it's built and deployed via an AzureDevops pipeline but it fails since 8th of April. I think it's important to note: there were no code changes ...
Dzmitry Shauchuk's user avatar
0 votes
0 answers
354 views

This is my first job working in IT and I am still kind of learning the ropes so to speak. The company I am at has it's own in house software that I am frankly too young to understand. I have installed ...
Noxawi's user avatar
  • 9
-1 votes
1 answer
144 views

I am trying to figure out how to bundle a third party software .exe with my wpf app .msi. I created a wix installer project and have that building my .msi file correctly and now I want to bundle that ...
David Berken's user avatar
0 votes
0 answers
423 views

I try to automatise my Windows configuration with unattend.xml file and during FirstLogonCommands, I only have SynchronousCommand block, On theses blocks, i ran differents PowerShell scripts and ...
The Nurse's user avatar
1 vote
4 answers
516 views

I'm updating an existing installer and want to install specific ARM64 binaries when the OS is running on ARM64. I'm using WIX 3.11 (a bit old, I know) to create the installer. The custom actions are ...
Loqaritm's user avatar
2 votes
0 answers
200 views

We have Wix v.3 code which we have been using for years (with tweaks for each version) to build our installer. Up to now, it has been done in a Windows command shell, not as part of a Visual Studio ...
Todd Hoatson's user avatar
6 votes
0 answers
1k views

I am posting this answer as I could not find anywhere that listed in detail exactly how to code-sign a legacy MSI installer using a 3rd party Code Signing certificate so that it is accepted by the ...
user23490659's user avatar
0 votes
2 answers
197 views

I have created a msi installer using microsoft visual studio 2022, where i am able to install signtool.exe reading from signtool installation steps This was the command which i had used in a .bat file:...
Ashutosh Kumar's user avatar
3 votes
0 answers
142 views

This script created jDiskMark-0.5.1.msi with jpackage. When I run the installer it will list a name of a msi which is not the same as the msi file I packaged and ran which is miss leading to a user. ...
simgineer's user avatar
  • 1,926
0 votes
1 answer
116 views

Hello Stack Overflow community, I'm facing an issue with an Inno Setup script and need some assistance. During the installation of an executable (Exe), I have to register one windows service for start ...
Harsh Patel's user avatar
  • 1,434
0 votes
0 answers
238 views

I am a beginner at creating MSI, so I don't know much about it. Here, I need to create an installer. When the user clicks the installer exe file, it should automatically install and set up Python and ...
Ashique m's user avatar
1 vote
0 answers
247 views

I am creating a Windows Service in C++. I want to allow the Windows Service to update itself (upon a certain trigger) by running msiexec /p patch.msp /quiet /qn. I am currently using the Windows ...
aampere's user avatar
  • 280
0 votes
1 answer
172 views

I am trying to overwrite a config.properties file with my WiX setup. I use systemtools:TemplateFile to replace placeholders in a template file. But the setup fails to update it since it has been ...
Apollo's user avatar
  • 1,908
0 votes
0 answers
79 views

I want to retrieve a script that is stored in the binary table in an MSI. How can I do that? I tried this: string query = $"SELECT `Data` FROM `Binary` WHERE `Name`='{sourceName_}'"; using (...
KingVoodoo's user avatar
1 vote
1 answer
137 views

Suppose, I have a input Password while an application is getting installed. The application source is "MSI" and I am creating an MST file for it and providing the password in plain text as a ...
Hitesh Umare's user avatar
2 votes
1 answer
1k views

This question is answered here for WIX toolset v3 but I don't seem to find a lead to do the same on WIX v4. There is this link in the official documentation making reference to ...
jav's user avatar
  • 705
0 votes
1 answer
49 views

I have one package and one bundle, which installs/repairs/modifies/uninstalls that package. The bundle features a managed bootstrapper application. The framework is WIX 3.11. The package supports ...
Christoph Thien's user avatar
2 votes
0 answers
129 views

with jlink/jpakage i create a msi to install my javafx app but if i sign msi the final binaries installed are not signed at all. With an ant task and non modular app i know how to do it "create ...
karlp's user avatar
  • 41
0 votes
1 answer
229 views

I want to create the nsis installer like Notion's (desktop version on windows). I already know that Notion installer is created via nsis. It is not the default installer from nsis but one that is made ...
Gwitionin's user avatar
0 votes
1 answer
108 views

I'm trying to create an installer authored in WiX, and while I think my code is correct based on other examples that I've found, the XML file is not being updated on installation. I'm trying to use a ...
Jack W.'s user avatar