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.
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 ...
3
votes
1answer
719 views
How to create a runnable setup out of bootstrapper packages?
I would like to install a .NET 4.0 application on the user's machine that does not meet certain prerequisites.
I need to be able to define the installation order of these prerequisites in my ...
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 ...
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 ...
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
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
257 views
Completely Silent MSI installer with prerequisites
I have a simple C# application which I need to create a silent installer for. I am using Visual Studio Installer (MSI-based). Since it is C# application, installer must install .NET framework as ...
1
vote
1answer
145 views
Dot Net Installer: How to stop the “Skip” button from showing up?
Here is the installer builder that I am using, version 1.10:
http://dotnetinstaller.codeplex.com/
In the config file, I have multiple Setup Configurations.
For the created bootstrapper, there will be ...
1
vote
1answer
586 views
Facing a error while installing product through Setup.exe(which uses .net framework 4.0)
We are not able to create the installer after migrating the code from VS2005 to VS2010. We have done all the settings for the new boot strapper file, and the setup.exe which is generated using the ...
1
vote
1answer
229 views
How to localize the Visual Studio bootstrapper?
I have a wix setup project with the following msbuild bootstraper settings:
<GenerateBootstrapper ApplicationFile="$(TargetFileName)"
Culture="cs"
ApplicationName="Slais"
...
0
votes
1answer
43 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 ...
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 ...
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 ...
3
votes
0answers
240 views
How do I ensure the “Publisher” field is populated for my ClickOnce *Bootstrapper*
I've got an application that I deploy via ClickOnce. I do all the manifest generation/signing in an MSBuild script. Up until today we've been using a self-generated certificate, but now I've got a ...
2
votes
0answers
46 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 ...
2
votes
0answers
389 views
WCF initialization using Bootstrapper for Unity and Automapper
I am using Unity Container and Automapper and I'm looking for a place to call my initialization and bootstrapping code in my WCF Service. My internet searches have recommended one of four approaches ...
2
votes
0answers
210 views
The bootstrapper does not detect whether any of the prerequisites are already installed
I have created a setup project in VS 2010 and added as a Prerequisite Visual C++ 2010 Runtine Libraries (x86). Then I compile the project and I get two files (test.msi and setup.exe).
If I run ...
2
votes
0answers
898 views
SQL Server 2008 R2 SMO bootstrapper install fails because of dependent product status is unknown
I am creating a bootstrapper package where it should support all platform [x86,x64,ia64]. When I included all different platform MSI in product.xml of MSXML6.0, SQL CLR type, Native client and SQL ...
2
votes
0answers
549 views
Adding prerequisites to setup project VS2010
I want to add new prerequisites to my visual studio setup project. Searching, I found the "bootstrapper manifest generator" that looks very nice, but the problem is that it doesn't work well on 64bits ...
2
votes
0answers
400 views
How to install custom pre-requisites Visual Studio 2008 Setup Project
I'm developing a VS2008 Setup project and I need to install (or not if already exists) some nested prerequisites.
I made two Manifest Package with Bootstrapper Manifest Generator for VS2008 and put ...
1
vote
0answers
99 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' ...
1
vote
0answers
206 views
Bootstrapper.AutoMapper and Profile registration order
I'm working on an ASP.NET MVC 3 application using AutoMapper 2.2.0. I have some AutoMapper profiles declared and when I initialize them manually everything works just fine.
...
1
vote
0answers
190 views
How to set product code of Wix bootstrapper install
I'm using a bootstrapper to check for the existence and if needed install a set of 3rd party product installs. It then installs my product. I would like to include an uninstall shortcut for the full ...
1
vote
0answers
153 views
Wix creates a Bootstrapper folder - is it needed?
When I build my Wix project, it creates a Bootstrapper folder in the output directory (i.e. bin\Debug\Bootstrapper). Is that folder actually needed by the installer, or is it just an intermediate ...
0
votes
0answers
9 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
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 ...
0
votes
0answers
7 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
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 ...
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
0answers
26 views
where to get the .net 3.5 bootstrapper?
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:
...
0
votes
0answers
26 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 ...
0
votes
0answers
47 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
0answers
49 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:
...
0
votes
0answers
69 views
Bootstrapper “Unable to read registry value”
In boostrapper package.xml I am trying to read MSSQL entry from the regsitry like:
<InstallChecks>
<RegistryCheck Property="CheckSQLInstalled" Key="HKLM\SOFTWARE\Microsoft\Microsoft SQL ...
0
votes
0answers
107 views
Unable to sign bootstrapper executable (setup.exe) after embeding manifest
We are using Nant to prepare setup of our software using Clickonce.
Using signtool to sign dll(s) and exe(s).
signtool command : signtool sign /f ${certFile} /p ${certFilePwd} {path of setup.exe}
...
0
votes
0answers
115 views
Launching a managed DLL from unmanaged code permanently loops
I have an unmanaged .DLL that I'm trying to bootstrap a managed .DLL. It seems to launch the code with no issues; however after calling the managed DLL the processor just spins indefinitely, there ...
0
votes
0answers
67 views
Bootstrapper Packages does not showing to the Prerequisites Dialog
I have a click once setup for .Net Win-forms application
I need to add
ghostscript.exe
as a Prerequisite when starting setup from the client I've tried adding the following structure as a ...
0
votes
0answers
48 views
How register generic as provided types in MefBootstrapper?
I'd like to do something like this:
public class Bootstrapper : MefBootstrapper
{
....
protected override void RegisterBootstrapperProvidedTypes() {
...
0
votes
0answers
127 views
How to set the install location from the bootstrapper for wix to display in Program and Features of control panel
Hi i am using a bootstrapper project along with Wix. I need to display the install location (in Program & Features of control panel)which user selected in the Installer UI wizard.
For this i am ...
0
votes
0answers
59 views
How to set the Virtual Directory in the Web Service Url and Report Manager URL in the bootstrapper SQL Server 2008 R2 Express
I am working on a project where I need to install SQL Server 2008 R2 Express with Advanced Services as a prerequisite. As part of the silent install I want it to configure reporting services so it ...
0
votes
0answers
195 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 ...
0
votes
0answers
200 views
How can i change the bootstrap pagination template in django
I don't know anything about bootstrap pagination. IN my django application it was already used.
I just want to put the pages link near the table generated but i am not able to find where can i chnage ...
0
votes
0answers
130 views
Add condition to Bootstrapper Manifest Generator
I have an issue with creating a VS setup package.
I need to install SQL CE in prerequisites of my application and I did that using Bootstrapper Manifest Generator.
I need to add check for operating ...
0
votes
0answers
191 views
WiX Bootstrapper Bundle creating uninstall shortcut in program files
How to create a uninstall shortcut in startmenu-> program files to uninstall application installed with WiX bootstrapper.
I am not getting the produt code of bootstrapper, which I would have used for ...
0
votes
0answers
299 views
How to create Bootstrapper to run the exe file using windows instler
I have an vb.net application and i create setup .msi file for this project .i wnat run the another .exe file after install this this .msi file for this i have create bootstrapper package file and i ...
0
votes
0answers
239 views
.msi file signature not working with WiX and setup bootstrapper but no errors reported
I have a Microsoft Office plugin that I'm developing and I need the .msi file to be signed. Here's what I'm doing:
build the code with msbuild, sign the assembly with key (works fine)
Build the ...
0
votes
0answers
407 views
Can AutoMapper be used in an MVC3 application on Windows Azure with BootStrapper(.AutoMapper)?
I am attempting to deploy a fairly simple MVC3 application to Windows Azure. No matter what I seem to do, I never end up with a "Healthy" deployment. So I installed VS Ultimate just to try and access ...
0
votes
0answers
129 views
check the number of modules in bootstrapper unit test
I'm writting a license checker for our application which is based on prism.
I need the number of modules registered in bootstrapper but I coudn't find anyway because modulecatalog and ... are ...

