Skip to main content

Visual Studio Setup - projects and custom actions

Popularity Report

Total Popularity Score: 0

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Rank

Bookmark History

Saved by 2 people (-2 private), first by anonymouse user on 2007-12-07


Public Sticky notes

So angle brackets are used for passing multiple property values into a custom action. Square brackets indicate that the actual value will be resolved at run time.

Highlighted by jyotijv

.NET assemblies can contain installer classes, and Visual Studio .NET lets you call methods in these installer classes as custom actions

Highlighted by jyotijv

  • A user interface sequence during which data is gathered (file locations, choices and so on) and the system is not being changed.
  • An auditing sequence in which the actions that will be done are written to an audit file, and the system typically is not yet changed.
  • An updating sequence in which the audit script is processed and changes are made to the target system.
  • Highlighted by yyensen

    The installation process is actually a client/server environment in which the user interface runs on a user-mode Msiexec.exe and the server installation process runs on the Windows Installer Service Msiexec.exe.

    Highlighted by yyensen

    public properties are denoted with uppercase names. There are two main attributes of public properties that concern us here: They can be passed from the UI sequence to the execution sequences, and they can be specified on a command-line install.

    Highlighted by yyensen

    Visual Studio creates a Windows Installer component for each file being installed

    Highlighted by yyensen