Installation Source Registry Key

 
Installation Source Registry Key Rating: 9,3/10 3308 votes
  1. Installed Source Registry Key
  2. Windows Installer Registry Key
  3. Domain Name Registry Key

Jun 4, 2009 - Situation: You want to find out from which path a certain application was installed, or you want to modify this path. In the registry, search the.

Jump to navigationJump to search
This article is about the Microsoft Windows component. For the installation of the operating system itself, see Windows Setup.
Windows Installer
Help screen of Windows Installer 5.0 running on Windows 7.
Developer(s)Microsoft
Initial release31 August 1999; 19 years ago
Stable release
Operating systemWindows 2000 and later
PlatformIA-32, x86-64, Itanium
TypeInstaller
LicenseFreeware
Websitewww.microsoft.com
Windows Installer Package[2]
Filename extension.msi, .msp
Internet media typeapplication/x-ole-storage
Developed byMicrosoft
Type of formatArchive
Container forInstallation information and an optional .cab file payload
Extended fromCOM Structured Storage
Open format?No

Windows Installer (previously known as Microsoft Installer,[3]codenameDarwin)[4][5] is a software component and application programming interface (API) of Microsoft Windows used for the installation, maintenance, and removal of software. The installation information, and optionally the files themselves, are packaged in installation packages, loosely relational databases structured as COM Structured Storages and commonly known as 'MSI files', from their default filename extensions. Windows Installer contains significant changes from its predecessor, Setup API. New features include a GUIframework and automatic generation of the uninstallation sequence. Windows Installer is positioned as an alternative to stand-alone executable installer frameworks such as older versions of InstallShield and NSIS.

Before the introduction of Windows Store, Microsoft encouraged third parties to use Windows Installer as the basis for installation frameworks, so that they synchronize correctly with other installers and keep the internal database of installed products consistent. Important features such as rollback and versioning depend on a consistent internal database for reliable operation. Furthermore, Windows Installer facilitates the principle of least privilege by performing software installations by proxy for unprivileged users.

  • 1Logical structure of packages
  • 2Setup phases
  • 3Other features
  • 4Developing installer packages

Logical structure of packages[edit]

A package describes the installation of one or more full products and is universally identified by a GUID. A product is made up of components, grouped into features. Windows Installer does not handle dependencies between products.

Products[edit]

A single, installed, working program (or set of programs) is a product. A product is identified by a unique GUID (the ProductCode property) providing an authoritative identity throughout the world. The GUID, in combination with the version number (ProductVersion property), allows for release management of the product's files and registry keys.

A package includes the package logic and other metadata that relates to how the package executes when running. For example, changing an EXE file in the product may require the ProductCode or ProductVersion to be changed for the release management. However, merely changing or adding a launch condition (with the product remaining exactly the same as the previous version) would still require the PackageCode to change for release management of the MSI file itself.

Features[edit]

A feature is a hierarchical group of components. A feature may contain any number of components and other sub-features. Smaller packages can consist of a single feature. More complex installers may display a 'custom setup' dialog box, from which the user can select which features to install or remove.

The package author defines the product features. A word processor, for example, might place the program's core file into one feature, and the program's help files, optional spelling checker and stationery modules into additional features.

Silmarillion epub websites. It is the ancient drama to which the characters in The Lord of the Rings look back, and in whose events some of them such as Elrond and Galadriel took part. Includes a special preface by J.R.R. The Silmarillion is an account of the Elder Days, of the First Age of Tolkien's world. With a cover design by Tolkien himself, to complement the Hobbit and Lord of the Rings. The tales of The Silmarillion are set in an age when Morgoth, the first Dark Lord, dwelt in Middle-Earth, and the High Elves made war upon him for the recovery of the Silmarils, the jewels containing the pure light of Valinor.

Components[edit]

A component is the basic unit of a product. Each component is treated by Windows Installer as a unit. The installer cannot install just part of a component.[6] Components can contain program files, folders, COM components, registry keys, and shortcuts. The user does not directly interact with components.

Components are identified globally by GUIDs; thus the same component can be shared among several features of the same package or multiple packages, ideally through the use of Merge Modules.

Key paths[edit]

A key path is a specific file, registry key, or ODBC data source that the package author specifies as critical for a given component. Because a file is the most common type of key path, the term key file is commonly used. A component can contain at most one key path; if a component has no explicit key path, the component's destination folder is taken to be the key path. When an MSI-based program is launched, Windows Installer checks the existence of key paths. If there is a mismatch between the current system state and the value specified in the MSI package (e.g., a key file is missing), the related feature is re-installed. This process is known as self-healing or self-repair. No two components should use the same key path.

Setup phases[edit]

User interface[edit]

The user interface phase typically queries the target system, displays an installation wizard and enables the user to change various options that will affect the installation.

Installed Source Registry Key

However, the user interface sequence should not make any changes to the system, for the following reasons:

  1. A user may install or uninstall an MSI package in passive mode or silent mode, bypassing this phase entirely. (Passive mode bypasses the user interface phase but shows a graphical progress bar. Silent mode shows nothing.) During installation, information gathered in this phase may be supplied beforehand through the command-line interface.
  2. The user interface sequence runs with user privileges, and not with the elevated privileges required during installation.
Open source registry repair software

Execute[edit]

When the user clicks the 'Install' button in a typical MSI installation wizard, installation proceeds to the Execute phase, in which software components are actually installed. The Execute phase makes system changes, but it does not display any user interface elements.

The Execute phase happens in two steps:[clarification needed Two mode or two steps? Do both run?]

  • Immediate mode. In this phase, Windows Installer receives instructions, either from a user or an application, to install or uninstall features of a product. The requests cause the execution of sequences of actions, which query the installation database to build an internal script describing the execution phase in detail.
  • Deferred mode. In this phase, the script built in immediate mode is executed in the context of the privileged Windows Installer service. The script must be executed by a privileged account because of the heterogeneity of the scenarios in which a setup operation is initiated. For example, elevated privileges are necessary to serve on-demand installation requests from non-privileged users. (To run with elevated privileges, however, the package must be deployed by a local administrator or advertised by a system administrator using Group Policy.)

Rollback[edit]

All installation operations are transactional.[7] In other words, for each operation that Windows Installer performs, it generates an equivalent undo operation that would revert the change made to the system. In case any script action fails during deferred execution, or the operation is cancelled by the user, all the actions performed until that point are rolled back, restoring the system to its original state. Standard Windows Installer actions automatically write information into a rollback script; package authors who create custom actions that change the target system should also create corresponding rollback actions (as well as uninstall actions and uninstallation-rollback actions). As a design feature, if applied correctly this mechanism will also roll back a failed uninstall of an application to a good working state.

Other features[edit]

Advertisement[edit]

Windows Installer can advertise a product rather than actually install it.[8] The product will appear installed to the user, but it will not actually be installed until it is run for the first time by triggering an entry point (by means of a Start menu shortcut, by opening a document that the product is configured to handle, or by invoking an advertised COM class). A package can be advertised by an administrator using Group Policy or other deployment mechanism, or by running the msiexec executable with the /jm (for per-machine advertisement) or /ju (for per-user advertisement) switch. Some MSI packages authored in InstallShield may prevent the use of these and other native MSI features.

The user must have administrator privileges to complete the advertised installation.

Installation on demand[edit]

Similar to advertising, it installs a feature as soon as the user tries to use it.[9]

Administrative installation[edit]

An administrative installation creates an uncompressed source image for a product, typically to be used for installing or running an application from a network location.[10] An administrative installation is not a typical installation, in that it does not create any shortcuts, register COM servers, create an Add or Remove Programs entry, and so on. Often an administrative installation enables a user to install the product in such a way that its features run from the uncompressed installation source.

Administrative installations are also useful when creating a Windows Installer patch, as this requires uncompressed images of the earlier and current versions of a product in order to compute binary file differences. An administrative installation is performed by running the msiexec executable with the /a switch.

Custom actions[edit]

The developer of an installer package may write code to serve their own purpose, delivered as a DLL, EXE, VBScript or JavaScript. This can be executed during the installation sequences, including when the user clicks a button in the user interface, or during the InstallExecuteSequence. Custom Actions typically validate product license keys, or initialize more complex services. Developers should normally provide inverse custom actions for use during uninstall.

Msiexec provides a way to break after loading a specified custom action DLL but before invoking the action.[11]

Merge modules and nested executables[edit]

A Windows Installer package may contain another package to be installed at the same time. These are ideally provided as a .msm file component, but may also be a separate executable program which will be unpacked from the installer package during the InstallExecuteSequence and can be run immediately. The file can then optionally be deleted before the end of the InstallExecuteSequence, and so is ideal for using with older installers. .msm file component is called Microsoft Merge Module and is utilized to single out and integrate common components. It contains images of all tables, which have relevant information regarding the common components. Ready-made merge modules are supplied with Visual Studio or can be downloaded from the alternative sources.[12]

Interoperability with Windows features[edit]

Windows Installer 4.0, which was shipped with Windows Vista, incorporates capabilities to take advantage of the User Account Control feature. If an application can install without elevated privileges, its MSI package can be marked as such, thus allowing install without prompting the user for Administrator credentials. Windows Installer also works in conjunction with the Restart Manager; when installing or updating an application or system component with 'full' user interface mode, the user will be displayed a list of affected applications that can be shut down, and then restarted after files have been updated. Installer actions running in silent mode perform these application restarts automatically. System services and tray applications can also be restarted in this manner.

Developing installer packages[edit]

Creating an installer package for a new application is not trivial. It is necessary to specify which files must be installed, to where and with what registry keys. Any non-standard operations can be done using Custom Actions, which are typically developed in DLLs. There are a number of commercial and freeware products to assist in creating MSI packages, including Visual Studio (up to VS 2010[13]), InstallShield and WiX. To varying degrees, the user interface and behavior may be configured for use in less common situations such as unattended installation. Once prepared, an installer package is 'compiled' by reading the instructions and files from the developer's local machine, and creating the .msi file.

The user interface (dialog boxes) presented at the start of installation can be changed or configured by the setup engineer developing a new installer. There is a limited language of buttons, text fields and labels which can be arranged in a sequence of dialogue boxes. An installer package should be capable of running without any UI, for what is called 'unattended installation'.

ICE validation[edit]

Microsoft provides a set of Internal Consistency Evaluators (ICE) that can be used to detect potential problems with an MSI database.[14] The ICE rules are combined into CUB files, which are stripped-down MSI files containing custom actions that test the target MSI database's contents for validation warnings and errors. ICE validation can be performed with the Platform SDK tools Orca and msival2, or with validation tools that ship with the various authoring environments.

For example, some of the ICE rules are:

  • ICE09: Validates that any component destined for the System folder is marked as being permanent.
  • ICE24: Validates that the product code, product version, and product language have appropriate formats.
  • ICE33: Validates that the Registry table is not used for data better suited for another table (Class, Extension, Verb, and so on).

Addressing ICE validation warnings and errors is an important step in the release process.

Versions[edit]

VersionIncluded with[1]Also available for
1.0Office 2000N/A
1.1Windows 2000 RTM, SP1, SP2

Office XP[15]

Inpage 3.6

Windows 95, Windows 98
Windows NT 4.0
1.2Windows MeN/A
2.0Windows XP RTM, SP1
Windows 2000 SP3, SP4
Windows Server 2003 RTM
Windows 9x
Windows NT 4.0
Windows 2000
3.0Windows XP SP2Windows 2000
Windows XP
Windows Server 2003
3.1Windows XP SP3
Windows Server 2003 SP1, SP2
Windows XP Professional x64 Edition
Windows 2000
Windows XP
Windows Server 2003
4.0Windows Vista RTM, SP1
Windows Server 2008 RTM
N/A
4.5[16]Windows Vista SP2
Windows Server 2008 SP2
Windows XP
Windows Server 2003
Windows XP Professional x64 Edition
Windows Vista
Windows Server 2008[17]
5.0Windows 7 and later
Windows Server 2008 R2 and later
N/A

In October 2018, Microsoft released MSIX Packaging Tool as the successor to MSI.

Tools[edit]

NamePublisherDescriptionLicense
7-ZipIgor Pavlov7-Zip is an open-sourcefile archiver utility, and can extract the contents of MSI files.[18]GNU Lesser General Public License
EMCO MSI Package BuilderEMCO SoftwareAn installation editor that allows creating new MSI packages and converting non-silent EXE setups to silent MSI packages for unattended remote installation.Shareware
InstallShieldFlexera SoftwareInstallShield is a software tool for creating installers or software packages primarily used for installing software for Microsoft Windows desktop and server platforms.Trialware
OrcaMicrosoftOrca is a database table editor for creating and editing Windows Installer packages and merge modules.Freeware
Visual StudioMicrosoftVisual Studio 2002 through 2010 is capable of building Windows Installer Deployment projects that can create installer packages.[19] Microsoft has dropped support for deployment projects in 2012 and recommends using WiX instead.[13] While not included in the main installation of Visual Studio since 2012, Windows Installer Projects are supported in Visual Studio 2013/2015/2017 by installing an optional VSIX add-ons such as https://marketplace.visualstudio.com/items?itemName=VisualStudioClient.MicrosoftVisualStudio2017InstallerProjects.Shareware
WiXOutercurve Foundation (Microsoft)WiX (Windows Installer XML) is a free and open-source set of tools that helps build a Windows Installer packages from an XML document. It can be either used from command-line or integrated into Microsoft Visual Studio. SharpDevelop, a free and open-source alternative to Visual Studio, has adopted WiX.[20]Common Public License

See also[edit]

  • ZAP File – a way to perform an Application Installation when no MSI File exists.

Windows Installer Registry Key

References[edit]

  1. ^ ab'Released Versions of Windows Installer'. Microsoft Developer Network. Microsoft. Retrieved 3 November 2012.
  2. ^'File Extension .MSI Details'. Filext.com. Retrieved 2013-04-24.
  3. ^Mensching, Rob (2003-11-25). 'Inside the MSI file format'. MSDN Blogs. Archived from the original on 2009-01-15. Retrieved 2017-02-15.
  4. ^Mensching, Rob (2003-10-11). 'The story of Orca'. MSDN Blogs. Archived from the original on 2008-12-23. Retrieved 2017-02-15.
  5. ^Smith, Chris (2005-07-01). 'Windows Installer, The .NET Framework, The Bootstrapper, and You'. MSDN Blogs. Retrieved 2017-02-15.
  6. ^'Windows Installer Components'. MSDN Library. Microsoft Corporation. 2012-11-30. Retrieved 2013-04-08.
  7. ^Rollback Installation
  8. ^Advertisement
  9. ^Installation-On-Demand
  10. ^Administrative Installation
  11. ^'Debugging Custom Actions (Windows)'. Msdn.microsoft.com. 2012-11-30. Retrieved 2013-04-24.
  12. ^'Types of Packages: Non-Virtual Packages – Microsoft Windows Installer (MSI)'. itninja.com. 2016-12-28. Retrieved 2017-06-15.
  13. ^ abBuck Hodges (2011-03-17). 'Visual Studio setup projects (vdproj) will not ship with future versions of VS'. MSDN Blogs.
  14. ^Internal Consistency Evaluators – ICEs
  15. ^'Applying Full-File Updates to Client Computers'. Microsoft. March 9, 2004. Archived from the original on April 10, 2004.
  16. ^What's New in Windows Installer 4.5
  17. ^'Released Versions of Windows Installer (Windows)'. Msdn.microsoft.com. 2012-11-30. Retrieved 2013-04-24.
  18. ^'Windows Installer Tools & Tips'. InstallSite Stefan Krueger. Retrieved 19 November 2009.
  19. ^'Windows Installer Deployment'. Microsoft Developers Network (MSDN) Library. Microsoft Corporation. August 2008. Retrieved 1 October 2009. Windows Installer deployment enables you to create installer packages to be distributed to users; the user runs the setup file and steps through a wizard to install the application.
  20. ^'SharpDevelop Features'. IC#Code. Retrieved 31 March 2012.

External links[edit]

Domain Name Registry Key

  • 'Windows Installer'. Microsoft Dev Center.
  • InstallSite.org 'Resources for Setup Developers'
Retrieved from 'https://en.wikipedia.org/w/index.php?title=Windows_Installer&oldid=897024855'
Categories:
Hidden categories:

I found this article which describe how to find the install path of office:

But in the article are only the GUIDs up to office 2007, what are the GUIDs for office 2010 or where can I find them?

MBulliMBulli

4 Answers

I use these registry entries:

If you have a MSI installer you can use RegLocator table (registry searches).

user527987user527987

Generally there's a better way to do this for products that are both installed via the Windows Installer service and support updating from one version to the next. Use the upgrade code, which you get from the Property table of an Office MSI file.

Open source registry cleaner

I don't have a bunch of Office versions to compare, but if they've taken their own advice and kept the upgrade code constant across versions, then you can call MsiEnumRelatedProducts to get the product code for the version of Office that's installed on your machine. With the product code you can call MsiGetProductInfo to get the install location, the version, the date it was installed, a list of transforms that were applied to the install.. lots of stuff.

Do it this way, and you don't have to worry about not being able to detect some future version of Office.

This is the documentation you want to be looking at.

Ed.Ed.
Software
Yan SklyarenkoYan Sklyarenko
ShreekanthShreekanth

Not the answer you're looking for? Browse other questions tagged pathms-wordwindows-installerinstalloffice-2010 or ask your own question.