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

When trying to install the bundle, VCRedist seems to still set the reboot flag even though the argument /norestart is used. The installer then idles/ hangs with 0% CPU usage in the task manager and ...
kpm's user avatar
  • 21
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
1 vote
0 answers
22 views

my question straight forward: I'm building a Windows installer with WixSharp. Using a template project for example, I can't install the same software twice. Windows will give me an error that an ...
Finley's user avatar
  • 21
0 votes
2 answers
566 views

I'm on a new team that has inherited a cross-platform application, along with installers for Windows, Mac, and Linux. The application is a silent background agent responsible for applying patches and ...
JakeRobb's user avatar
  • 2,000
0 votes
1 answer
74 views

how can I run CA that would run on CANCEL/abort installation? I'd like to run a command in case of cancel/abort. I need it to support at quiet mode too. Also, how can I detect it's on cancel mode? ...
R.P's user avatar
  • 195
0 votes
0 answers
53 views

I'm using Wix# to create windows MSI installer. I want to to install a specific version of .NET MSI installer via my installer. I want to do this only after the user clicks on 'Install' on the UI but ...
K.W's user avatar
  • 151
0 votes
1 answer
144 views

I am using WixSharp v1.9.2 to create an MSI file, and I am trying to add a ManagedAction to my Project object. However, when I execute the project.BuildMsi() instruction, I get the error message "...
El_Merendero's user avatar
1 vote
1 answer
654 views

Building MSIs with WixSharp since years, I always followed this rule which basically says: For each new release of your application, change the ProductCode but never change the UpgradeCode. This ...
Uwe Keim's user avatar
  • 40.9k
0 votes
1 answer
178 views

I have two bundles. Both bundles contain 2 msis. One of these msis is shared between bundles so we have something like that: Bundle1 contains Product1.msi and Aux.msi Bundle2 contains Product2.msi ...
Grigoriy's user avatar
  • 136
2 votes
1 answer
1k views

I'm trying to code sign a Wix installer package that was developed by another company (I have limited knowledge of Wix). As a proof of concept piece of work we did I signed the MSIs and EXE using ...
rNewport's user avatar
0 votes
1 answer
451 views

I tried to delete a folder at uninstall but it does nothing. specifying the path though, get it to work. Not working: public void OnAfterInstall(SetupEventArgs e) { if (e....
R.P's user avatar
  • 195
0 votes
1 answer
47 views

How to set the service version as the installer version, using wix? How to set it by the installer's coding, NOT by GUI. For example : running service creates a .exe file in the bin folder.
R.P's user avatar
  • 195
1 vote
0 answers
114 views

I'm using WixSharp for building an installer. How can I NOT show the user custom error messages during silent install only? I mean - running via GUI will show the errors, only via silent install not. ...
R.P's user avatar
  • 195
0 votes
1 answer
470 views

Running a WixSharp Managed Setup up project I'm getting this error. Using WixUI_Common C:\agent\_work\66\s\src\ext\UIExtension\wixlib\Common.wxs(7) : error LGHT0103 : The system cannot find the file ...
R.P's user avatar
  • 195
0 votes
1 answer
839 views

Im trying to add all output files of a given path to the installation that end in either .exe, .dll or .config, but the ways I have tried so far haven't worked. This is what I've tried: private static ...
Felix t's user avatar
  • 19
0 votes
2 answers
1k views

I am using wix sharp to develop my installer and everything is working fine except I'm unable to provide the install directory location at run time. While installation, I'm taking input from user and ...
Mayank Tripathi's user avatar
0 votes
1 answer
195 views

Im using Wix# to deploy our software which needs to run an SQL script to install the database on installation. However I would like to give the user the option to select the server to install the ...
Felix t's user avatar
  • 19
0 votes
0 answers
97 views

I'm using Wix# to install my software and am running a script to install the database used by my software. Will users installing my software need to have SQL Server Express or some alternative ...
Felix t's user avatar
  • 19
0 votes
2 answers
203 views

Im using WixSharp to build my installer. In my project, I have this : new Files( new Feature("RootFilesFeature"), Path.Combine(C_SERVICE_RELEASE_PATH,"*.*"), (lFilename)...
WynDiesel's user avatar
  • 1,214
0 votes
1 answer
1k views

I am trying to include some reference files in Wix# managed project using DefaultRefAssemblies.Add method: ManagedProject project = new ManagedProject(); project.DefaultRefAssemblies.Add("...
Sneijder's user avatar
1 vote
1 answer
1k views

I want to install prerequisites and then display custom UI, with ManagedUI. So far I noticed that doesn't work. It works if I use Wix prebuild UI (WixUI_FeatureTree) but not with ManagedUI. I have ...
Jure Beton's user avatar
0 votes
0 answers
578 views

If the installer is built by "Microsoft Visual Studio Installer Projects", no matter I run the Setup.exe or Setup.msi to install my program, the "Add/Remove programs" in control ...
Iori Kyo's user avatar
2 votes
1 answer
369 views

I am totally new to Wix and wix#, I am trying to update the app.config after the installation is finished. I am able to achieve it by using the Wix Util extension util:XmlFile, but I want it to be ...
DevProf's user avatar
  • 874
1 vote
2 answers
1k views

I'm new to wix/wixsharp and bootstrapper. I created an installer and providing ProductID, UpgradeCode and version. Installer is working fine but when I'm creating new installer and giving different ...
Mayank Tripathi's user avatar
2 votes
1 answer
742 views

I have several projects which generates several references. and in the installer project which ultimately generates a MSI file; using WIX sharp. There are pre build events written to copy the ...
skoley's user avatar
  • 320