0
votes
1answer
35 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
1answer
242 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 ...
1
vote
1answer
385 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 ...
0
votes
1answer
83 views

dotnetInstaller should terminate on failure of registry check

I have very basic requirement of terminating the installation process on failure of finding registry key, during execution of dotNetInstaller bootStrapper. I am installing WebApplication and want to ...
0
votes
1answer
424 views

Using dotNetInstaller to check whether SQL Server 2008 is installed

I am trying to create a bootstrapper with dotNetInstaller for my application which needs Microsoft SQL Server 2005 Backward Compatibility Components. I have added a check for that using the pre-built ...
0
votes
1answer
170 views

General-purpose bootstrappers for chaining multiple “packages”?

I've been playing around with dotNetInstaller for some time now. It's a great general-purpose bootstrapper that can handle most of your bootstrapping needs. It's a little dodgy on getting install ...
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 ...
1
vote
1answer
231 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" ...
1
vote
2answers
245 views

Can i use VS Setup Project to build a bootstrapper which can install correct platform version or are there any free 3rd party tools?

I'm building 2 different MSI with Visual Studio Setup Project. One for x86 and x64. But i couldn't find a way to combine both into one project so that the bootstrapper is installing the correct ...
1
vote
1answer
2k views

changes url of setup.exe (deploy ClickOnce) using Msbuild

I use msbuild for using setup -url="location"... I publish application using ClickOnce and I want changes the url in the setup.exe. <Exec Command="$(PublishDir)\setup -url=$(ProviderUrl)" /> ...
1
vote
2answers
864 views

Error URL for Prerrequisites Setup.exe Click Once VS 2008

I have this trouble: I am using VS 2008 Team Suite, and I have WinForms csproj. I want Publish it using ClickOnce. In Publish Properties of csproj, I have these values: Publishing Folder ...
1
vote
3answers
1k views

VisualStudio MSI Bootstrap Loader Bug and Replacement

Right now, I am creating an msi and a setup.exe using the Visual Studio. It works quite well... till recently. I recently added a new dialog box with a Combo Box Control to the msi. Now when I install ...
4
votes
2answers
769 views

Bootstrapper Prerequisite ordering

When using the generic bootstrapper with MSBuild how is the order of installation of prerequisite items determined? For example, given: <Project ToolsVersion="3.5" ...