Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing application for currently logged in user from Inno Setup installer running as Administrator

A very common question about creating (Inno Setup) installers revolves around accessing/modifying a profile of a specific user (the currently logged in user) from an installer that runs with elevated/Administrator privileges.

Doing this has many drawbacks and is error prone.

All the existing answers cover part of the problem (registry, files, desktop icon, etc). A purpose of this question is to collect answers that address the problem globally, with all possible approaches.

like image 972
Martin Prikryl Avatar asked Jun 15 '17 19:06

Martin Prikryl


People also ask

How do I make an inno file executable?

Go to Menu, Project, then Compile to compile and create the setup file. This will create a complete installer. Run the Setup and your application will be installed correctly. Innosetup offers an awesome alternative to create great looking Installers for free.

What does Inno Setup do?

Inno Setup is an open source script-driven installation system created in Delphi by Jordan Russell. The first version was released in 1997. Since Jordan Russell wasn't satisfied with InstallShield Express which he had received upon purchase of Borland Delphi, he decided to make his own installer.

Is Inno Setup open source?

Inno Setup grew popular due to being free and open source; free for both commercial and non-commercial use, many software companies switched to the tool.

Is Inno Setup free?

Inno Setup is a free installer for Windows programs by Jordan Russell and Martijn Laan.


1 Answers

Inno Setup does not have any built-in mechanism to access or modify user environment from installer running with elevated/Administrator privileges.

All the attempts to achieve this rely on tricks like:

  • runasoriginaluser flag or ExecAsOriginalUser function. Some examples:

    Modifying or accessing registry of logged in user:
    Inno Setup Creating registry key for logged in user (not admin user) or
    How to read registry HKCU for logged In user from Inno Setup installer running as administrator

    Accessing AppData folder of logged in user:
    Inno Setup always installs into admin's AppData directory or
    Inno Setup Using {localappdata} for logged in user or
    Inno Setup - puts user files in admin documents.

  • or using {user*} constants.

Though these are not reliable, at least for these reasons:

  • When the current user does not have Administrator privileges, (s)he needs to enter Administrator credentials on installer UAC prompt. That switches the installer to a different user. So {user*} constants will not refer to the user that initiated the installation.

  • When the user explicitly runs the installer with elevated privileges, e.g. by right-clicking the installer and selecting "Run as administrator" or running it from another elevated application (file manager), the "original user" for runasoriginaluser flag or ExecAsOriginalUser function will already be elevated.

  • In corporate environments, applications are installed by Administrator, who is not the user that will be using the application.


The only correct generic solution to this problem is to defer a setup of the user environment only to the actual user session.

Easiest is to have the application itself do the setup on its first run.

The installer can only deploy shared files that the application can use for the setup.

If you cannot modify the application for whatever reason, you would have to iterate all accounts and modify them:

  • for files: Inno Setup Create individual shortcuts on all desktops of all users
  • for registry: Uninstall auto-run registry entries for all users

If you need to make sure the settings get distributed to accounts that get created only after installation, see How to install files for each user, including future new users, in Inno Setup?


If you are happy with a fact that the application will be setup for the logged in user only, use PrivilegesRequired=lowest:

[Setup]
PrivilegesRequired=lowest

Then the {user*} constants will correctly refer to the current user's folder.

If you still need Administrator privileges for some sub-task of the installation, you can requests privileges elevation for the sub-task only:

  • Inno Setup - Register components as an administrator
  • Inno Setup - Access unprivileged account folders from installer that requires privileges

If you want to prevent user from breaking this by explicitly running the installer with Administrator privileges, see

  • Can't get Inno Setup postinstall Run item to runasoriginaluser or
  • my answer to How to write to the user's My Documents directory with installer when the user used 'Run As Administrator'.

Or you can programmatically find out, what is the account of the current Windows logon session:

  • Determine if Administrator account that runs elevated Inno Setup installer is the same as the account of the current Windows logon session.

Another option is to allow the installer to install for the current user only:
Make Inno Setup installer request privileges elevation only when needed

like image 109
Martin Prikryl Avatar answered Sep 20 '22 02:09

Martin Prikryl