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

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:

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:

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:

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

Or you can programmatically find out, what is 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

Leave a Comment