Bootstrappers are programs that run a sequence of installation packages one after another. This is often needed when a product has to have certain prerequisites installed.

learn more… | top users | synonyms

0
votes
1answer
18 views

What is the difference between NetFx45WebLink and NetFx45RedistLink

I used WiX 3.7 to write a bootstrapper which installs .net 4.5 first and then my application's MSI: <Chain> <PackageGroupRef Id="NetFx45Redist"/> <MsiPackage Id="MainAppPackage" ...
0
votes
0answers
14 views

deploying windows application for .net framework 3.5

how to create startup project from windows application which creates bootstrapper with redistributable .net framework which installs .net framework before installing application on client machine.
0
votes
0answers
34 views

Change install directory WIX Bootstrapper

I'm having trouble with replacing the installation directory of my WIX project in a custom bootstrapper project. The solution consists 3 projects (Custom Bootstrapper, Installer Project and ...
0
votes
0answers
25 views

MSI Package keeps uninstalling - why?

I've defined the following MSIPackage in a chain (burn 3.6) <!-- DacFramework x86--> <MsiPackage Id="msi_DacFramework" SourceFile="..\..\External ...
0
votes
1answer
30 views

Is ASP.NET MVC 2/ 3 redistributable?

ASP.NET MVC 2 and 3 are prerequisite for our installer. We have planned to install this software’s using WIX Bootstrapper. Anyone let me know ASP.NET MVC 2 or 3 is redistributable. If so where I can ...
0
votes
1answer
41 views

WPF Caliburn.micro how to get instance per request from CompositionContainer

I'm using caliburn.micro and I've configured Bootstrapper as shown here: bootstrapper configuration, but unfortunatelly I can't find a way to request exported value as a new instance - container ...
0
votes
0answers
29 views

Wix3.7 Custom Bootstrapper not showing WPF themes from a themes library

I've created a custom managed bootstrapper in WPF using Wix 3.7. I used an existing XAML themes library to create the bootstrapper UI. I added the same themes library as a payload in the bootstrapper ...
0
votes
0answers
18 views

Wix Burn: Setting Engine LocalSource to extract Burn contents

I only guess this that Engine.SetLocalSource(sPackageId, sPayloadId, sLocalSourcePath) would set sLocalSourcePath where Payloads would be deployed and would be executed further by burn instead ...
0
votes
0answers
34 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
3answers
116 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 ...
1
vote
1answer
315 views

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
61 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
43 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
97 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
21 views

Setup Project with SqlLocalDB as Prerequisite

I need to include SqlLocalDB.MSI as a prerequisite of my project setup. With Visual Studio 2010. How can i do this?
0
votes
1answer
50 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
82 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 ...
1
vote
1answer
95 views

Bootstrapper does not load my NinjectModules

I am trying to use Bootstrapper with Ninject. I have installed Ninject.MVC3 to initialize my Ninject container from nuget and I have created a test module like this: public class TestNinjectModule : ...
0
votes
1answer
102 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
40 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
33 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
258 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
147 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
49 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 ...
0
votes
0answers
27 views

where to get the .net 3.5 bootstrapper? [duplicate]

I have a windows 7 machine, already have .net 4.5 and it's sdk installed as well as VS2012. I have a .net 3.5 project that I need to publish but I get the following error: ...
1
vote
1answer
162 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
156 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
74 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
53 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
0answers
297 views

Deploying the Microsoft Report Viewer as a Prerequisite in VS 2012

When I try to include the Microsoft Report Viewer 2012 Runtime as a prerequisite in a ClickOnce deployment in VS2012, I receive the following warning: The 'Microsoft Report Viewer 2012 Runtime' ...
0
votes
1answer
58 views

Testing Custom Bootstrappers in Nancy

So I have a CustomBootstrapper, which does a lot of application initialization, including IoC registration and Quartz scheduler setup. The modules also heavily rely on the SuperSimpleViewEngine. Now ...
1
vote
1answer
68 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 ...
0
votes
0answers
47 views

Installer is not removing bootstrapper from ARP (Add/Remove Programs) when UAC is enabled

I am deploying a Windows Installer package for an application. It uses a bootstrapper that checks for prerequisites (.NET framework, etc). When executing setup.exe, it first installs the bootstrapper ...
2
votes
0answers
51 views

Extract product code from KB hotfix to use in bootstrapper

I need to add KB Hotfix to my application's prerequisites, I'll do that by creating bootstrapper package for it. To do that first I need to check whether if its already installed or not so I can ...
0
votes
2answers
59 views

clickonce app.publish\setup.exe have a wrong modified date in the past

I have an error when trying to publish a WPF application on VS2010 ultimate with clickonce: error MSB3169: An error occurred generating a bootstrapper: Unable to begin updating resource for ...
1
vote
1answer
48 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
243 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 ...
0
votes
0answers
58 views

Data Entity Auto refresh in IIS WCF service using Ninject

My problem is some what related to How to force a WCF data service to refresh entities? but still I could not be able to get it through. I am using Ninject in my WCF service to instantiate all ...
0
votes
1answer
65 views

NServiceBus & Bootstrapper StructureMap

I am using NServiceBus is an azure worker role via convention by having configuration in app.config and azure Queue details in .csdef. I have a rest service that accesses the IBus by doing this: ...
1
vote
1answer
102 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
35 views

Where _PAGE_OFFSET value in Linux Kernel source defined

From my linker file of linux kernel(vmlinux.lds) I came to know the value of _PAGE_OFFSET is 0xc0000000 but for some reasons I would to like change this value but coun't find out which macro this ...
1
vote
1answer
41 views

Inject dependency in IStartupTask for bootstrapper

I am using Bootstrapper and Ninject to manage bootstrapping my application and dependency injection. This is an asp.net webapi application. I have a simple implementation for IStartupTask like ...
0
votes
3answers
115 views

Bootstrapper with Ninject using asp.net webapi

i am trying to use Bootstrapper to do initialization for my application, ioc, automapper, configuration etc. I need some direction on how to setup the ninject correctly in asp.net webapi using ...
0
votes
1answer
134 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
364 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
312 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
284 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
136 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 ...
1
vote
1answer
71 views

When should my prism services be registered?

I've been struggling with the ideal approach to this. Right now, I have my services created in Boostrapper right before I create my application shell, in the method: protected override ...
0
votes
0answers
60 views

bootstrapper RegistryCheck not working on win7 64 bit

I have a problem with the Installer bootstrapper , it works on WIN7 32 bit but seems to be bypassed on WIN7 64 bit i.e. the driver is not installed. The relevant parts of the product .xml file are: ...

1 2 3 4 5