Questions tagged [dotnetinstaller]

dotNetInstaller is a widely used, general-purpose setup bootstrapper for Microsoft Windows 95, 98, 2000, XP, 2003, Vista, 2008 and Windows 7.

dotNetInstaller is a widely used, general-purpose setup bootstrapper for Microsoft Windows 95, 98, 2000, XP, 2003, Vista, 2008 and Windows 7.

dotNetInstaller enables the developer to define the application prerequisites and install the correct versions of these components in a predictable order based on the processor architecture, user operating system type and language, allow the user to download these components from the web, install these components directly from a single packaged setup, local media or both. dotNetInstaller is very feature rich and runs on all known Windows operating systems.

28 questions
16
votes
2 answers

How to deploy 64-bit and a 32-bit Windows Installer package as a single setup?

I need to deploy a software setup targeting both, Windows 64bit and 32bit. I have two separate Windows Installer databases (created with WiX) for each platform, and I am using dotNetInstaller to combine both into a single installation bootstrapper…
Daniel Gehriger
  • 7,339
  • 2
  • 34
  • 55
5
votes
1 answer

Bootstrapper handling Multi-Instances msi

I am currently developping an msi installer, using wix toolset 3.8. This installer has to be "multi-instances", which is possible through the instruction in wix. (thanks to Yan Sklyarenko and his blog entry regarding…
5
votes
6 answers

bat file to install .net 3.5 framework for win server 2012

I want to make a bat file to install .net Framework 3.5 on Windows Server 2012. I tried like this but with no success: cd /D %userprofile% C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe Import-Module ServerManager powershell…
Adrya
  • 3,427
  • 8
  • 31
  • 29
4
votes
0 answers

Run unelevated custom action from a WiX elevated installer

I'm trying to figure out how to run a custom action from an elevated WiX installation setup program. The msi file generated by WiX is executed by DotNetInstaller. In WiX I have a Package section with InstallScope set to perMachine and this custom…
stenio
  • 297
  • 1
  • 10
3
votes
1 answer

Can i launch a prerequisite as an admin on windows?

Im trying to create a per user installation for my program made in vb.net I have .net 4 as a prerequisite which im going to download if its not installed The problem ive run into is admin rights is there a way to install the framework as an…
2
votes
2 answers

Install .NET 4 Prerequisite Elevated but Application MSI perUser

using dotNetInstaller 2.1.528 Elevating both Prerequisite and MSI As detailed in the links below, when using dotNetInstaller bootstrapper: Under the “Runtime” section set the “administrator_required” to “True” this will allow dotNetInstaller to…
Cel
  • 6,467
  • 8
  • 75
  • 110
1
vote
1 answer

Silent Installation for dotNetInstaller Bootstrapper

I am using dotNetInstaller bootstrapper for adding pre-requisites like Postgresql 9.1 I want to silently install postgresql from the bootstapper. I added the below command in the *executables section of the DotnetInstaller's Configuration…
Girish
  • 389
  • 2
  • 4
  • 12
1
vote
3 answers

Initiate / call bootstrapper in WiX

I have created a bootstrpper using the dotNetInstaller tool. The created bootstrapper internally has these installers: .NET Framework 4.0 SQL Server Express Now through WiX, what are the steps that I need to follow to invoke the above…
Girish
  • 389
  • 2
  • 4
  • 12
1
vote
3 answers

How can I make an installer that silently downloads and installs prerequisites?

I have to make a rather complex installer for a C# add-in for Word. I've been researching this for almost two days now and I still haven't found something that can do everything needed. The main issue here is due to the constraints regarding…
Alex G.
  • 2,113
  • 6
  • 25
  • 33
1
vote
1 answer

Visual Studio Setup Project - Install Current User with Windows Standard User Account

I tested my installer on netbook running Windows 7 Starter logged in using a Standard User Account and noticed some issues I had not encountered before. Because the user is running as Standard User, they are prompted for Administrator account…
GoalMaker
  • 905
  • 3
  • 9
  • 22
1
vote
1 answer

dotnetinstaller configuration to continue with MSI installation even if prerequisites fail

I have a setup for a VC++ application built with dotnetinstaller. Being a native application, the VC++ redistributables are a prerequisite. However, nowadays these change very often (every 6-8 weeks). This means we release a new version of the…
1
vote
1 answer

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 "Skip" Button on each Configuration (except the…
Simon Tang
  • 51
  • 1
  • 4
1
vote
0 answers

Is it possible use dotNetInstaller without .net framework 3.5 installed on computer?

I need to create a bootstrapper using dotNetInstaller 2.2. But my computer does not have .Net framework 3.5 installed and only .net 4.5 is installed. When I am trying to create the bootstrapper Windows is prompting to download and install .net 3.5…
diyath.nelaka
  • 193
  • 14
1
vote
2 answers

Issue with dotNerInstaller Getting error "The installation package could not be opened. Verify..."

When I create exe within the C:\Program Files\dotNetInstaller\bin folder, and run it, it works perfect, install perfect, but when I try to install that exe from any other location/path, the error appears "The installation package could not be…
0
votes
0 answers

Searching for Platform independent installer

Would anyone happen to know if there are any platform independent installer options that can be used for both windows and Linux?
1
2