Tagged Questions
The installer tag has no wiki summary.
78
votes
12answers
26k views
How to implement WiX installer upgrade?
At work we use WiX for building installation packages. We want that installation of product X would result in uninstall of the previous version of that product on that machine.
I've read on several ...
76
votes
25answers
13k views
What is the best choice for building Windows installers?
I have primarily used Visual Studio 2003, and its tool for building an installer was pretty painful. Files and folders had to be added manually, one by one. I am looking at upgrading to VS 2008, and ...
48
votes
4answers
42k views
How do I uninstall a Windows service if the files does not exist anymore?
How do I uninstall a .NET Windows Service, if the service files does not exists anymore?
I installed a .NET Windows Service using InstallUtil. I have now deleteded the files, but forgot to run ...
45
votes
9answers
26k views
How do I create a nice-looking DMG for Mac OS X using command-line tools?
I need to create a nice installer for a Mac application. I want it to be a disk image (DMG), with a predefined size, layout and background image.
I need to do this programmatically in a script, to be ...
37
votes
16answers
7k views
What's the best way to distribute Java applications?
Java is one of my programming languages of choice. I always run into the problem though of distributing my application to end-users.
Giving a user a JAR is not always as user friendly as I would ...
34
votes
7answers
11k views
How to make a .NET Windows Service start right after the installation?
Besides the service.StartType = ServiceStartMode.Automatic my service does not start after installation
Solution
Inserted this code on my ProjectInstaller
protected override void ...
27
votes
3answers
878 views
Ethical Software Installs - Affecting other software
I'd like to get a community view on this, as I was personally very offended at the way some software I have used for a long time recently changed in behavior.
In this particular case, it's the .Net ...
27
votes
9answers
7k views
Free software for windows installers: NSIS vs. WiX?
I'm need to choose a software package for installing software. NSIS and WiX seem promising. Which one would you recommend over the other and why?
Feel free to offer something else if you think it's ...
27
votes
3answers
5k views
How to automatically start your service after install?
How do you automatically start a service after running an install from a Visual Studio Setup Project?
I just figured this one out and thought I would share the answer for the general good. Answer to ...
26
votes
16answers
3k views
23
votes
8answers
676 views
Is there any definitive documentation on writing software installers?
I've read a bunch of documentation on installers and haven't come across anything good that explains the underlying concepts. Most of the installer software I've come across is based on the same ...
20
votes
4answers
73k views
Java JRE 64-bit download for Windows?
I'm working on a web site project with a Java component and am currently testing for cross-browser compatibility. Most is fine but the Java part won't load on 64-bit browsers. Looks like I need a ...
20
votes
4answers
6k views
How do Linux binary installers (.bin, .sh) work?
Some software (for ex. the NetBeans IDE) ship the Linux installers in .sh files. Curious about how exactly they 'package' a whole IDE into a 'shell script', I opened the file in an editor. I saw some ...
19
votes
8answers
35k views
Does Android keep the .apk files? if so where?
After android installs an application from the Marketplace, does it keep the .apk file?
Is there a standard location where Android would keep such files?
19
votes
7answers
8k views
InnoSetup: How to automatically uninstall previous installed version?
I'm using InnoSetup to create installer. I want the installer to automatically uninstall the previous installed version, instead of overwriting it. How can I do that?
18
votes
2answers
15k views
Installing a windows service from a Visual Studio Installer project
A colleague has written a Windows Application and left me to do the installers. I have created the installer project through Visual Studio and added the primary output of the service project to the ...
17
votes
3answers
9k views
Does the .Net Framework 4.0 Installer include the .Net Framework 3.5?
Do .Net components that were compiled against the .Net Framework 3.5 run on a system that has only .Net Framework 4.0 installed?
Or in other words, does the .Net Framework 4.0 Installer include the ...
17
votes
1answer
2k views
What is the wix 'KeyPath' attribute?
What is the Wix 'KeyPath' attribute? In particular, how does it apply to the following:
<Component Id="ProgramMenuDir" Guid="BF266F76-192A-493E-B5C7-C54660E61D7D">
...
17
votes
3answers
9k views
How to execute custom action only in install (not uninstall)
I'm sure this is fairly easy, but I've kind of had a hard time with it. I've got a custom action that executes a different (non-msi) installer on installation. Unfortunately, I've noticed that it also ...
17
votes
3answers
3k views
What does the EXE do in the Visual Studio setup project output
We are working on a winforms app in Visual Studio 2005 and the setup project we created output both an MSI and an EXE. We aren't sure what the EXE file is used for because we are able to install ...
16
votes
5answers
5k views
Python distutils - does anyone know how to use it?
I wrote a quick program in python to add a gtk GUI to a cli program. I was wondering how I can create an installer using distutils. Since it's just a GUI frontend for a command line app it only works ...
15
votes
19answers
2k views
What technology do you use to build your installer?
Installshield
Visual Studio
NSIS
other ...
Why?
Advantages?
Disadvantages?
14
votes
9answers
6k views
What are good InstallAnywhere replacements for installing a Java EE application?
Which (commercial or free) installer tool would you recommend to replace InstallAnywhere as the installer for a Java EE application? What do you specifically like about it, and what are its downsides?
...
14
votes
14answers
7k views
Best Way To Determine If .NET 3.5 Is Installed
I need to programatically determine whether .NET 3.5 is installed. I thought it would be easy:
<% Response.Write(Environment.Version.ToString()); %>
Which returns "2.0.50727.1434" so no such ...
13
votes
3answers
14k views
How to prevent “This program might not have installed correctly” messages on Vista
I have a product setup executable that copies some files to the user's hard drive. It's not a typical installer in the normal sense (it doesn't add anything to the Start Menu or Program Files ...
13
votes
5answers
6k views
Set ASP.Net version using WiX
I am creating an installer for an ASP.Net website using WiX. How do you set the ASP.Net version in IIS using WiX?
13
votes
3answers
5k views
How to register file types/extensions with a WiX installer?
I didn't find an explicit answer to this question in the WiX Documentation (or Google, for that matter). Of course I could just write the appropriate registry keys in HKCR, but it makes me feel dirty ...
12
votes
2answers
542 views
Are Visual Studio Setup Projects suitable for complex setups
Are "Visual Studio Setup" Projects suitable for complex setups in different versions?
The application is rather large (> 500.000 lines of code) and is under continuous development. Every 6 to 10 ...
12
votes
5answers
14k views
Using InstallUtil and silently setting a windows service logon username/password
I need to use InstallUtil to install a C# windows service. I need to set the service logon credentials (username and password). All of this needs to be done silently.
Is there are way to do something ...
11
votes
5answers
560 views
Installer or no installer?
There's lots of questions about installers but I haven't seen one about whether or not to actually use one in the first place.
What is the logic behind using them in the first place? Can't the user ...
11
votes
3answers
4k views
FxCop 1.36 is gone!
I just wanted to download FxCop 1.36 but I can't find it in the internet.
A few days ago FxCop 10 came out for Windows 7 but I need the old Version.
The file is gone on the MS server and everybody ...
11
votes
2answers
5k views
Adding Custom prerequsites to visual studio setup project
I have a setup project that I need to install a redistributable that is not available in the default prerequisite list. Is it possible to add this redistributable to the bootstrapper that the setup ...
11
votes
9answers
2k views
What is the best installer? [closed]
Poll: What is the best and easy to use installer to use with .NET 3.5 SP1 windows applications?
11
votes
5answers
8k views
Using WiX to create an IIS virtual directory
I'd ask this on the WiX mailing list, but it seems to be down.
I have an application which is both a desktop app and a web app which runs locally. I've created a couple of basic WiX installers, but ...
11
votes
8answers
3k views
What's the 'correct' way of registering/installing an Assembly to the GAC?
There seems to be lots of different ways to register assemblies with the GAC, as in, they 'work'. However, what's the "proper" way of doing it?
In response to Lou Franco (and gacutil):
I'm using ...
11
votes
9answers
3k views
What is the best installation tool for java?
Depends on your experience could you recommend something?
I've use izpack, and it's very nice tool, is there any other, better tool?
11
votes
6answers
6k views
How do you set directory permissions in NSIS?
I'm trying to build a Windows installer using Nullsoft Install System that requires installation by an Administrator. The installer makes a "logs" directory. Since regular users can run this ...
10
votes
8answers
802 views
What is the best Windows Installer?
What is the best Windows installer maker.
I want to buy one.
Price doesn't matter.
There are some few years old questions, but we have 2011 now.
10
votes
1answer
2k views
How to associate application with existing file types using WiX installer?
related to this: http://stackoverflow.com/questions/138550/how-to-register-file-types-extensions-with-a-wix-installer but not a duplicate.
I need to handle existing file types (.jpg files).
I do not ...
10
votes
3answers
3k views
WIX will not add HKLM registry setting during Windows 7 install
Good Morning,
I have written a WiX installer that works perfectly with Windows XP but when installing to a Windows 7 box I am running into difficulty with Registry Entries. What I need to do is add a ...
10
votes
2answers
7k views
Visual Studio 2005 -> 2008/10 Service Installer Project Upgrade issue
I've upgraded a [.vdproj MSI generator project built into VS2008] System.Configuration.Install.Installer with a ServiceProcessInstaller and a ServiceInstaller from Visual Studio 2005 to 2008. There ...
10
votes
5answers
8k views
How to modify .NET config files during installation?
I use the app.config file to store some values (path to a mapping database, data connection selections). These settings differ on the user machines and I would like the installer to set them right. Is ...
10
votes
2answers
5k views
Setting the manufacturer in a VS 2008 Setup Project
I have a windows setup project that installs a service. All works well except for one thing: The default directory offered to the user during install is of the form "C:\Program ...
10
votes
5answers
4k views
How to generate WiX XML from a .reg file?
Is there a tool to generate WiX XML given a .reg file?
In 2.0, you were supposed to be able to run tallow to generate registry XML:
tallow -r my.reg
For what it's worth, the version of tallow I ...
10
votes
7answers
2k views
Java Application Installers
I'm not looking for java-web-start, I'm looking for a thick-client application installation toolkit. I've got a stand-alone application that consists of several files (jar files, data files, etc) and ...
10
votes
3answers
4k views
How best to define a custom action in WiX?
I have a wix installer and a single custom action (plus undo and rollback) for it which uses a property from the installer. The custom action has to happen after all the files are on the hard disk. It ...
9
votes
4answers
1k views
How do I enforce an expiration date for a trial install of my software?
I need to offer a trial period for my custom software. I have a 64-bit C# app, which uses 64-bit, multi-processor support DLLs. Other utilities to be included are written in C++ (exes and dlls). I ...
9
votes
3answers
233 views
.Net Installer - Diff between .exe and .msi
I am deploying my application using the installer that i create using the Setup and Deployment project in visual studio. When i build the setup project i get a .exe and a .msi file.
I would like to ...
9
votes
7answers
778 views
Can anyone provide a good “idiot's guide” to creating an installer in VS2008 (C#) Pro?
I have Visual C# 2008 Professional and have developed the first half of a C# application (console mode) with the second half in progress now (GUI).
I'm looking for an easy path to creating an ...
9
votes
3answers
3k views
Web setup MSI fails on Windows Server 2008
I have built a web setup project in VS2008 which installs my ASP.NET/Silverlight app into IIS. This works fine everywhere except on Windows Server 2008.
I get this error message in the MSI installer ...