C# PROGRAMMING

Using InstallSheild

Article by:
Date Published:
Last Modified:

Overview

This page is all about using InstallShield with Visual Studio projects to create installable setup files for the user to use.

Creating A Single setup.exe

For smaller projects and things that will be downloaded over the internet, you’ll most likely want to create a single file called setup.exe or similar that users can run to install the program. This is not the default way to do things with InstallShield, so you have to configure it to make this happen.

The key part, once you’ve created an InstallShield project in your solution, is to go to the Visual Studio Configuration Manager window and change the build configuration for the InstallShield project to “SingleImage”.

Making InstallShield produce a single file output install (e.g. setup.exe) in the Visual Studio configuration manager.
Making InstallShield produce a single file output install (e.g. setup.exe) in the Visual Studio configuration manager.

Version Numbers

The product version must follow the syntax aaa.bbb.ccccc where the aaa is the major version number, bbb is the minor version number, and ccccc is the build number. You are limited to a maximum number of 255 (unsigned 8-bit) for both aaa and bbb, and a maximum number of 65,535 (unsigned 16-bit) for ccccc. You can include a fourth field, dddd, but the InstallShield does not use it.

Upgrading From Older Versions

By default, if you try and install a newer version of your install package on a system, the InstallShield will throw the error “Another version of this product is installed. Installation cannot continue.”.

The 'Another version is installed' error that InstallShield gives you if you haven't set the updates up correctly.
The 'Another version is installed' error that InstallShield gives you if you haven't set the updates up correctly.

To change this so that newer versions will update or replace files from the older version, you have to make sure of two things.

  1. You have a upgrade path.

    Adding a new update path, so newer versions of the program will install over older versions.
    Adding a new update path, so newer versions of the program will install over older versions.
  2. You generate a new “Product Code” everytime you want the application to update. Note that this is different to the Product Version, which is a smaller, user-generated number (e.g. 1.2.3), rather than the longer computer-generated Product Code.

    If you want a install to replace/upgrade and older one, make sure to re-generate a different product code (the circled number).
    If you want a install to replace/upgrade and older one, make sure to re-generate a different product code (the circled number).

Using The Command-Line

You can build a release from the command line by using ISCmdBld.exe for both Windows Installer and InstallScript projects.

Non-optional Options

-p "path"Path to the .ism file you wish to build.
-r "name"The name of the release.
-a "build xxx"The build configuration.

Optional Options

-y "1.0.5"Specify the version number. This is really helpful if you wish to increment the build number automatically!

Launching Program On Install

By default, if you select the option to allow the user to launch program on install, the checkbox will not work.

The option to allow the user to launch the program once the installation has finished. This normally doesn't work without tweaking a few settings.
The option to allow the user to launch the program once the installation has finished. This normally doesn't work without tweaking a few settings.

Authors

Geoffrey Hunter

Dude making stuff.

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License .

Tags

    comments powered by Disqus