0
votes
0answers
10 views

Burn: Access to msi files inside Bootstrapper.exe

Question: Can we access msi files (and other installers) packed with Burn Bootstrapper at install time? Let's say if we need to read some property, or apply mst just before starting the installation ...
0
votes
2answers
19 views

Why does managed bootstrapper application always install .Net framework no matter the .net framework exists or not?

If WixVariables WixMbaPrereqPackageId and WixMbaPrereqLicenseUrl are not added, it fails to compile. The Windows Installer XML variable !(wix.WixMbaPrereqPackageId) is unknown. The Windows ...
-2
votes
1answer
174 views
+100

Complete WiX sample *.wxs to download and install a specific version of .NET Framework if it's not available

There are many incomplete questions and answers about how to download and install .NET Framework(s) if they are not available but none complete code seems to be available on Internet. Can you provide ...
0
votes
0answers
22 views

Wix installer unable to uninstall old version

Facing one really strange problem with WIX installer. I am migrating from VSI to WIX. The VSI version of setup installs everything in Program Files and runs a custom action at the end of uninstall to ...
1
vote
1answer
35 views

Is there a way to make an installer which can install multiple msis downloading from internet?

Just like WiX installer, I wanna distribute a small setup.exe, while installing, the setup.exe can download the demanded msis from a specified server. If anyone know how to do, code sample is better. ...
1
vote
1answer
28 views

Wix burn upgrade needs to uninstall both MSI's before upgrading

I have two MSI's; framework.msi and product.msi. The framework.msi installs dll's into the GAC that the product.msi depends on for both install and uninstall. I've created a BA that chains the two ...
0
votes
0answers
29 views

How to run custom code as part of WiX burn MBA on install-complete and support rollback

I need to embed, invoke and run some custom code as part of my custom managed bootstrapper application, as a post-install step. This custom code is within a class library that I have included as a ...
3
votes
1answer
40 views

Using Burn as an alternate to Wix Dialogs and Custom Actions

While digging into BootstrapperApplication methods and events, I implemented OnExecuteMsiMessage and I was able to see the messages being returned by my msi during installation process. That also ...
0
votes
1answer
36 views

How to determine whether dotnet and VSTORuntime is installed in WIX Bootstrapper

i made a setup file of my Add-Ins project using wix. it has some dependencies like dotNet and VSTO Runtime. so I used Wix bootstrapper to confirm that dependencies must be installed before installing ...
0
votes
0answers
21 views

How to make exe keep on installing sliently after reboot system in wix?

I make a bootstrapper exe installer by wix v3.8,and the code as follows: <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" ...
0
votes
1answer
26 views

Transition from visual studio to wix installer

I have visual studio installer installs everything in Programfiles. I have done transition and create new WIX installer. Wix installer alone works fine but when I try to upgrade my old version I get ...
2
votes
1answer
95 views

Including .NET Installer in Wix Bundle not detecting if already installed

I'm on WiX 3.7, and I can't get the simple bundle element to work, as it doesn't bring across the Net FX installer package, or embed it in the setup.exe . I've resorted to creatingmy own Package for ...
1
vote
1answer
81 views

Burn: Run Managed Bootstrapper where Dot Net Framework 4 is not installed

I'm a newbie to Burn and learning to develop Managed Bootstrapper Application (MBA) along with Bundle package. As MBA require Dot Net Framework 4.x, we would need it to be installed on the target OS ...
0
votes
1answer
30 views

How to make the bootstrapper installer show UI when uninstall by Add/Remove?

How to make the installer can popup UI or dialog when unistalling by Add/Remove? Right now the installer that is created by the Wix v3.8 bootstrapper only has one confirmation dialog to remove. How ...
1
vote
1answer
97 views

Setup created by WIX Bootstrapper is not started

I am newbie for Bootstrapper. i tried to create a setup file which is intended to first run the dotnet framework setup file and only then the MyApp.exe. After finishing the project i got the final ...
1
vote
1answer
102 views

WiX burn custom MBA - repair failing on NetFx45Web package

I wrote a custom managed BA, and got most of the functionality to work, except for a repair. Examining the bundle log provides: [335C:3440][2013-04-29T13:51:41]w343: Prompt for source of package: ...
0
votes
1answer
54 views

WiX burn custom BA - how to pause progress when Cancel command fires?

Using a custom managed bootstrapper application, I am unable to get the setup progress to stop when the cancel button is clicked. I pull up a confirmation view with Yes/No options. Once cancellation ...
0
votes
1answer
38 views

How to write a registry key and value in bundle of wix?

I can write a registry key and value in setup project of wix,the code like this: <RegistryKey Id="WinApp" Root="HKLM" Key="Software\App\[ProductName]" Action="createAndRemoveOnUninstall" > ...
1
vote
1answer
51 views

WiX-Bootstrapper - Set Productname and Companyname for UAC Dialog

I have created a Bootstrapper with WiX 3.7. Now, when I start it on a Windows7 machine, the UAC-Dialog will be shown before installing .NET 4.0 as a prerequisite. Thats ok. I am searching now for a ...
1
vote
1answer
37 views

BURN User Interface using External Theme

I created a bootstraper, that checks the registry and UI components before installing the desired component. I have an issue, I am using an External theme, I want to display BULK ( Alot of Data ...
1
vote
1answer
150 views

Install .NET Framework 4.0.2 with WiX

I am using WiX v3.7 There I have created my own Bootstrapper. Now, I am able to install .NET Framework 4 when it is not installed. <util:RegistrySearch Root="HKLM" Key="SOFTWARE\Microsoft\Net ...
1
vote
1answer
84 views

Read and value from registry and concatenate and finally assign to a variable in wix bootstrapper

I want to launch the application immediately after the installation. My code is as follows <Variable Name="LaunchTarget" Value="C:\ProgramFiles\MySetup\MyExe.exe" /> If the user change the ...
0
votes
1answer
113 views

Cancel the custom action execution and Rollback using wix burn Boostrapper UI

I am trying to create wix burn bootstrapper that install my msi. I am using Wix 3.7. I have few custom actions with my msi. If I cancel the setup while 1st (or any) CA running, all other CA are called ...
2
votes
1answer
279 views

WiX Bootstrapper Application

I want a bootstrapper to install .net 4.5 (if not available) before install my setup.msi. If the machine has .net 4.5 then I want to install product setup.msi only. Following is my code: ...
1
vote
1answer
256 views

WiX Bootstrapper - Install MSI from CustomAction

I have created a Bootstrapper with WiX. It contains a chain with two MSI-Packages. When it is running, It is calling a .NET-CustomAction which is showing a View (like this sample: ...
1
vote
1answer
201 views

Cancel Installation and Rollback using wix burn Boostrapper UI

I am using Wix 3.7. I am trying to create wix burn bootstrapper that install my msi. I have added two buttons in my BA UI for Install and Cancel. i am using C# for BA UI design. I have added the ...
1
vote
1answer
123 views

WiX burn: how to change 'WixBundleManufacturer' in bootstrapper application?

I am building a customizable setup application with WiX, having started with this tutorial: http://bryanpjohnston.com/2012/09/28/custom-wix-managed-bootstrapper-application/ The setup needs to be ...
3
votes
3answers
337 views

wix installer 3.7 boostrapper Registry search

<?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" ...
1
vote
1answer
162 views

bootstrapper application rollback

I am trying to create a Wix burn bootstrapper that installs my msi. The bootstrapper exe is working fine but the only issue is that whenever I try to cancel the installation in midway the custom ...
1
vote
1answer
106 views

Wix Bootstrapper Won't Run When Using ThemeFile

I have created a wix bootstrapper that runs fine on all computers when no theme file is used. If I use a theme file, it will run on my computer but not on anyone else's. ...
-1
votes
1answer
114 views

Burn Bootstrapper application Installation [closed]

I am using Wix 3.7. I have created setup with burn bootstrapper application. While installing this setup in Kaspersky antivirus installed machine, it shows a virus named as TDM:Trojan.WIN32.Generic. ...
0
votes
1answer
262 views

WiX: how to access / change installation directory in managed bootstrapper?

I am creating a WPF setup application with a custom user interface. I started with the tutorial of Bryan P. Johnston: http://bryanpjohnston.com/2012/09/28/custom-wix-managed-bootstrapper-application/ ...
0
votes
1answer
581 views

WiX Bundle ExePackage DetectCondition always false

This is my first question to Stack Overflow! :-D I am trying to create a WiX Bundle that installs the .NET Framework 4.0 before my .msi installer. I inspected the log file for my bootstrapper using ...
1
vote
1answer
491 views

WiX Bootstrapper: How do I set burn variables from the command line?

Using WiX 3.7 and .NET 4.0. How does one set burn variables when running a WiX bootstrapper EXE from the command line?
0
votes
1answer
482 views

WiX Extended Bootstrapper Application: How to determine which radio button is selected?

Here's my setup: Compiling at .NET 4.0 (this cannot change) Using WiX 3.7 Using the WiX Extended Bootstrapper Application extension So I'm creating a bootstrapper installation project and though ...
0
votes
1answer
240 views

WiX GenerateBootrstraper no longer works after upgrading

I had a solution with 2 projects in Visual Studio 2010 with .NET 4. One project is a shared library ("Widget") and the other is a WiX setup project ("Setup"). WiX project was created for v3.6 I ...
2
votes
1answer
320 views

WiX burn bootstrapping x86 and x64 msi's into single No-UI bootstrapper

I have x64 and x86 versions of my installer .msi, and want to ship a single executable which simply checks the machine architecture and runs the x86/x64 MSI. The MSIs are basically identical, they ...
1
vote
2answers
546 views

Custom Wix Burn bootstrapper doesn't detect MSI install state

I'm creating a custom wizard-style bootstrapper based on Wix/Burn (3.6 release version). I've based in on the Wix 3.6 bootstrapper code. The problem is that I cannot get the bootstrapper to detect ...
2
votes
1answer
454 views

Embedding .Net Framework setup executable in WIX bootstrapper

Is there some way to embed the .Net framework redist exe (dotNetFx40_Full_x86_x64.exe) inside my wix bootstrapper "Sedtup.exe"? My feature MSI is allready embedded in the Setup.exe. I would like to ...
3
votes
1answer
474 views

Wix bootstrapper won't detect installed .NET framework

I have a Wix installer and bootstrapper application to install my application and a service. As a prerequisite I need the .NET 2.0 SP2 Framework installed and tried to detect that using the following ...
0
votes
3answers
440 views

How do I pass a default 'install location' to the RtfLicense bootstrapper?

I'm using an rtflicence standard bootstrapper to install dotnet before my poject msi in a chain. I noticed that there's an 'options' button which displays an install location dialog and allows the ...
0
votes
1answer
126 views

Changing behaviour of .NET 3.5 bootstrapper generated by WIX

i've got following problem: I have builded an installer with WIX. This installer contains a bootstrapper for .NET framework 3.5. First time installing the bootstrapper works like a charme. .NET ...
2
votes
1answer
589 views

WiX Burn - Determine what items are already installed

I've a burn installation whereby the user can select which of three options to install - each one directly relates to one of three MsiPackages in a chain, such as : <Chain> <MsiPackage ...
3
votes
1answer
83 views

Getting Display Name from PackageID

Looking through the source of the Wix Standard Bootstrapper application, it appears that each package has a DisplayName property: pPackage->sczDisplayName However, the BootstrapperCore dll that ...
4
votes
3answers
1k views

WiX Burn Start Application after Installation

I'm aware of similar questions in WiX msi, but I'm having issues starting an application within a bootstrapper exe created with burn after the installation. My full bundle is below. If it makes any ...
0
votes
1answer
293 views

WiX - suppress Install and Close Buttons

I have a wix installation that currently uses the standard bootstrapper to bundle a number of MSI's together. With the goal of automatically updating the applications, what I want is for the dialog ...
0
votes
1answer
653 views

Adding WIC as a requirement before .NET 4.0 in WiX Burn custom Managed Bootstrapper

I'm having trouble getting a burn bundle with a custom managed bootstrapper application to launch on certain platforms that do not come with Windows Imaging Component, which is required to install ...
1
vote
1answer
384 views

WiX Bootstrapper run executable on exit

I'm using the WiX (3.6) Burn bootstrapper to bundle a prerequisite component (Bonjour) with the setup for my program. It works great and all, but: I'd like to add a step to the end where I run an ...
2
votes
2answers
1k views

VS2012 and Wix 3.6 - Installing .Net 4.5 with my application

I am very new to the installer world. I have successfully made an .msi for my application and it is building with short-cuts and also uninstalls correctly. My next goal is to package .Net 4.5 with ...
2
votes
1answer
454 views

Wix Burn 3.6 RTM, still installing .net 4.5 Beta

I'm using WIX Burn to lay down .net 4.5. Seems really straight forward from the documentation: http://wix.sourceforge.net/manual-wix3/install_dotnet.htm My installer is dead simple <Wix ...

1 2