Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WiX, UAC, managed custom action and impersonation

Tags:

uac

wix

wix3.6

I have built a Windows Installer package using WiX 3.6 that embeds a custom managed (C#) action.

At this stage, the installation requires that

  1. The installer be run using a specific local administrator account (in this case, the SharePoint installer account, which is a local administrator)
  2. User Account Control be disabled

There really isn't a way I can bypass requirement #1, because the managed action can only perform certain steps if it runs in the context of the SharePoint installer account.

I would like to remove requirement #2 and let the installer properly run even if UAC is enabled.

I've researched the issue quite extensively but still can't get it to work. I have set InstallScope="perMachine" in my package, which seems to properly prompt for UAC elevation, but the installer still fails with the infamous 2869 error.

The main problem is that my custom action is configured with Impersonate="yes" because it has to run in the context of the current user, not the local administrator account. When I search online, almost all "fixes" point to Impersonate="no" in the custom action, but that's not an option for me.

My question therefore is: is there a way to run a custom managed action with the identity of the current user without requiring UAC to be completely disabled?

like image 842
Raphael Londner Avatar asked Oct 16 '12 18:10

Raphael Londner


2 Answers

When you use Impersonate="yes" your Custom action runs without administrative privileges with the credentials of the currently logged user.

When Impersonate="no" your Custom action is run in System context. When running in system context, the custom action has full access to the system.


From WiX CustomAction element documentation, Impersonate attribute:

This attribute specifies whether the Windows Installer, which executes as LocalSystem, should impersonate the user context of the installing user when executing this custom action. Typically the value should be 'yes', except when the custom action needs elevated privileges to apply changes to the machine.

like image 137
Alexey Ivanov Avatar answered Nov 20 '22 10:11

Alexey Ivanov


Where are you referencing the custom action?

Having the .msi running with elevated privileges might not be enough. To be sure that your custom action works with elevated privileges you also have to use a deferred custom action and reference it in the InstallExecuteSequence. This might not solve your problems, but the articles linked at the bottom goes in detail in explaining the UAC logics during an msi installation.

Basically, not everything the installer does carries the privileges with it, an you have to be sure to run the custom action when the installer is using the elevated privileges.

Source: http://blogs.msdn.com/b/rflaming/archive/2006/09/30/uac-in-msi-notes-when-general-custom-action-mitigation-fails.aspx

I hope you find this information useful, I might be of more assistance if you share your custom action code.

like image 2
Epiderma Avatar answered Nov 20 '22 10:11

Epiderma