Tagged Questions

From the MSDN documentation: Microsoft Windows Installer is an installation and configuration service provided with Windows. The installer service enables customers to provide better corporate deployment and provides a standard format for component management. The installer also enables the advertisement of applications and features according to the operating system.

learn more… | top users | synonyms

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 ...
33
votes
3answers
25k views

How to add a WIX custom action that happens only on uninstall (via MSI)?

I would like to modify an MSI installer (created through WIX) to delete an entire directory on uninstall. I understand the there RemoveFile and RemoveFolder options in WIX, but these are not robust ...
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 ...
23
votes
8answers
677 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 ...
18
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
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"> ...
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
3answers
2k views

Make UAC optional in Windows Installer on Vista

I'm have written an msi file that offers a choice of "per-user" or "for all" installation in the UI phase, and now find that the installer fails on Vista: if I just reuse the installer that works ...
13
votes
4answers
457 views

What is the best way to auto update a windows application?

Google Chrome auto updates itself every five hours. I want to clone this exact functionality in my own application. What is the best way to implement this functionality on Windows?
13
votes
3answers
15k 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
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 ...
13
votes
2answers
3k views

Make wix installation set upgrade to same folder

How can I make a major upgrade to an installation set (MSI) built with Wix install into the same folder as the original installation? The installation is correctly detected as an upgrade, but the ...
13
votes
1answer
5k views

Image size for BannerBitmap property in Windows Installer

I'm working on a quick setup program in Visual Studio and wanted to change the banner bitmap. Anyone know off-hand what is the ideal (or the required) dimensions are for the new banner image? Thanks.
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 ...
11
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 ...
11
votes
4answers
3k views

WiX: Prevent 32-bit installer from running on 64-bit Windows

Due to user confusion, our app requires separate installers for 32-bit and 64-bit versions of Windows. While the 32-bit installer runs fine on win64, it has the potential to create support headaches ...
11
votes
6answers
2k views

What are the advantages of installing programs in AppData like Google Chrome?

I just noticed that Chromium was installed in AppData in both Vista and XP. If Google does that and if other applications does this, than is that becuase there is some form of protection? Should we ...
10
votes
3answers
1k views

How to write in a registry key own by TrustedInstaller

In order to install a new property page into the Active Directory SnapIn, I need to write into the following registry key of W2K8 R2 (as documented by Microsoft) ...
10
votes
8answers
813 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
2answers
1k views

Wix: one file per component or several files per component?

Should I wrap all the files I want to install in individual components? What is the advantage of putting several files in one component?
10
votes
3answers
2k views

How do I deploy a .inf based driver?

I would like to deploy a .inf based USB driver with my installer. I guess the .inf needs to be placed in %SystemRoot%\inf, but there is also a .cat (WHQL certification I guess?), and .sys files. ...
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 ...
9
votes
4answers
295 views

What are the benefits of a MSI installer over a standard setup.exe?

If you need to install a 100% .NET product, should you prefer MSI installers? Why? Thanks.
9
votes
3answers
2k views

Installing a new version of a deployment project over old version

I have a deployment project which will not let me install over an older version. The msi file says to uninstall the program first from Add/Remove programs. This is not a good user experience. How can ...
9
votes
2answers
926 views

Wix Open web page when uninstall completes

I'm using Wix3. I need to open a web page when the user uninstalls the product. Any ideas how it can be done? Thanks.
9
votes
7answers
654 views

Good .NET Application Installer

I have a windows application I want to create an install package for and am wondering what the best solution(s) are. I have used the free Setup Project that comes with Visual Studio but it doesnt ...
9
votes
3answers
5k views

Installing multiple instances of the same windows service on a server

So we've produced a windows service to feed data to our client application and everything is going great. The client has come up with a fun configuration request that requires two instances of this ...
9
votes
3answers
3k views

.NET setup projects using Visual Studio 2008

When you create a Setup project for a Windows/Console application, you find that there are two outputs. Setup.exe .msi What does setup.exe and .MSI do? Which one should be used for installation? ...
9
votes
5answers
1k views

Including all dependencies

I'm just starting out with WiX as I need to be able to automate building an MSI on our CI server. Is there anyway to automatically include all the dependencies of a project?
8
votes
2answers
4k views

Visual Studio Installer > How To Launch App at End of Installer

This is probably a stupid question and my Googling just is not functioning today. I have an application I added a Visual Studio Installer > Setup Wizard project to. I am wondering how to add a button ...
8
votes
5answers
507 views

How do I get the current users name in a custom action for windows installer?

I need to get the username of the user running the installer for my custom install action. Because the installer gets special priviledges, Environment.UserName just gives "SYSTEM". ...
8
votes
9answers
18k views

WMI “installed” query different from add/remove programs list?

Trying to use WMI to obtain a list of installed programs for Windows XP. Using wmic, I tried: C:\Documents and Settings\romandas>wmic wmic:root\cli>/output:c:\ProgramList.txt product get ...
8
votes
4answers
5k views

Click Once - All Users

How to I configure click-once to install apps for all users. On another forum I got to 'use MSI' - thanks - but how. Also, the first installing user may not be admin - which may be a problem. And I ...
8
votes
11answers
1k views

Best Windows Installation file Creator? [closed]

I'm not the best programmer so I found it was much easier to write a program as several separate executables, which occasionally call each other. But now I need an easy way to actually run them ...
7
votes
3answers
1k views

What are the specific differences between .msi and setup.exe file?

I searched a lot, but all are guessed answers. Help me to find the exact answer.
7
votes
2answers
4k views

How do I make a WiX installer with a completely self-contained .NET 3.5 sp1 installer?

I need to include the full .NET 3.5 sp1 installer into my installer, which is in WiX. I need that boostrapper to be entirely self contained, with no web access at all. It is just not allowed for ...
7
votes
4answers
29k views

How do I check if Windows Installer 3.1 or higher is installed?

I need to know this since this is a pre-req for .NET 3.5 and if I'm including the .NET bootstrapper, I should also see if Windows Installer 3.1 is needed. Right now I'm checking for the registry key: ...
7
votes
1answer
919 views

VDPROJ auto upgrading vs. uninstall/reinstall

I've seen a confusing behavior regarding the MSI files generated by a VDPROJ file. If I build my MSI in Visual Studio and then right-click and pick "Install" from within Visual Studio, it will ...
6
votes
4answers
99 views

Best approach to install prerequisite on client machine using msi

I have msi and wants to check whether vsto run-time is installed on target machine, I have used launch condition through VS2008 in my msi but it only redirect user to vendor's website. I just want to ...
6
votes
1answer
628 views

Bootstrappers that download packages over the web from Microsoft

What are the best practices for creating internet download bootstrappers that reference Microsoft packages? For example InstallShield has a Setup Prerequisite that can download vstor40_x86.exe from ...
6
votes
6answers
4k views

Close running version of program before installing update (Inno Setup)

This should be simple, I need to stop any previous version of my program from running when the installer starts. Most people suggested making an exe which does this and calling it before Inno Setup ...
6
votes
1answer
740 views

How do I specify Visual Studio Installer Conditions?

I have a Visual Studio Installation Project and I want the Installer to create a specific folder only if a check box on a 'Checkboxes (A)' form that I've added to the project UI is checked. The name ...
6
votes
3answers
3k views

How to remove HKCU registry keys when uninstalling software?

When my software is installed, via an MSI, it creates some registry keys within HKLM. When people are using the software their individual preferences are saved to HKCU. When the software is ...
6
votes
1answer
1k views

How to sign an installer to prevent Vista's UAC warning

I have an app that I need to distribute and want to sign it so I can avoid the UAC warnings in vista. Currently I see this... I am using visual studio to create the installer but the app was not ...
6
votes
7answers
542 views

Delphi, installers and Windows 7

As part of a general move to Windows 7 - where all applications should have an "installer experience", I need to create installers for all of our application suite. I have looked at InstallShield, ...
6
votes
2answers
765 views

Wix Major Upgrade: how do I prevent Windows service reinstallation?

I'm working on an installer that is supposed to install several Windows services. We make new builds (with new .msi files) pretty often, and we use major upgrades to make it easy to install over a ...
6
votes
1answer
331 views

Howto use configurable Merge Modules in Wix?

AFAIK it's done like this: Product: <Merge Id ="HelpInstaller" SourceFile="HelpInstaller.msm" Language="1033" DiskId="1"> <ConfigurationData ...
6
votes
1answer
3k views

Use Wix installer to add shortcut to subfolder in startmenu programs

I am trying to add my program shortcut to an existing folder in the start menu shortcuts. For example All Programs -> AppNameFolder -> AppNameVersionFolder -> AppShortcut In order to achieve ...
6
votes
1answer
821 views

Visual Studio MSI Installers

I have an Web Setup Project Installer and I would like to default the site and the Application Pool that is selected during the install process. Also I would like to have the name of the product ...
6
votes
5answers
533 views

Recommendations for getting started with WiX?

I found a WiX Tutorial, but it's really long-winded and seems like more than I wanted. What's the best way to get started quickly? My end goal is nothing really complicated: an installer that ...

1 2 3 4 5 23