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.
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 ...
0
votes
1answer
17 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 ...
3
votes
1answer
334 views
Resume an installer after restarting
The installer needs to run the .NET 4 installer (dotNetFx40_Full_setup.exe) and Microsoft Surface Toolkit (SurfaceToolkitRuntime.msi). The problem is that the .NET 4 install needs to restart the ...
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
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 ...
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 ...
0
votes
0answers
17 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 ...
1
vote
1answer
314 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
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
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
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 : ...
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
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
96 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?
8
votes
1answer
1k views
What is the best practise to create MSI with some other child MSI as prerequisite?
Currently we are using Innosetup as a bootstrapper to install the MSI prerequisites. It makes bit complex to maintain the setup. I found that burn tool which may help us to resolve this issue by ...
0
votes
1answer
101 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
257 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:
...
18
votes
3answers
8k views
How do I change the .NET framework bootstrapper package?
I have a C# project that I previously had targeting .NET 4.0, and now I want to target .NET 3.5, but I am getting this warning:
The version of the .NET Framework launch condition '.NET Framework ...
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
295 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 ...
2
votes
1answer
473 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 ...
0
votes
0answers
198 views
Reference bootstrapper from installshield limited edition
I updated a vs 2010 solution with a setup project to vs 2012. As the setup was not compatible, we install installshield limited edition and everything works fine.
The problem is that I had a custom ...
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 ...
1
vote
2answers
644 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 ...
3
votes
1answer
92 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 ...
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 ...
5
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 ...
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 ...
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
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
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
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 ...


