vote up 8 vote down star
1

I'm have written an msi file that offers a choice of "per-user" or "for all" installation in the UI phase, and now find that the installer fails on Vista:

  • if I just reuse the installer that works for XP, Vista will trigger a UAC prompt even for the "per-user" installation, making that installation pointless
  • if I turn off UAC in bit 3 of PID_WORDCOUNT, Vista won't invoke UAC at all anymore, so even if the user would have permission to install into the machine registry (say), the privilege raising doesn't happen, so the installation fails.

So: how can I prevent installer from invoking UAC when it isn't really needed? Alternatively, how can I programmatically request UAC even if bit 3 is set?

flag

4 Answers

vote up 3 vote down check

Unfortunately, the Windows Installer does not provide a way to create a single package that can install per-machine and per-user but only prompt for UAC on the per-machine case. The issue is that they bit that can suppress the UAC prompt is stored in the SummaryInformation stream and is not modifiable while the package is executing.

link|flag
Thanks for the confirmation. Is there a serious design reason for this, or can we hope that this flag becomes a property some day? – Martin v. Löwis Nov 22 '08 at 16:30
I hear that MSI 5.0 is doing something is this area. But we'll need Win7 for that. <sigh/> – Rob Mensching Jan 13 at 1:11
vote up 3 vote down

Try this reference: UAC in MSI Notes: How to Build Packages that work for both Standard User and Per-Machine?

link|flag
Please understand that I'm not talking about the UAC of an executable - there is no setup.exe. Instead, users launch the MSI file directly. – Martin v. Löwis Nov 1 '08 at 6:56
new reference provided... – sascha Nov 3 '08 at 5:48
This is a fantastic link to series of blog posts discussing how user access control (UAC) relates to Windows Installer (.msi) technology. Thanks for the link, @sascha! – dthrasher Sep 25 at 18:55
vote up 1 vote down

Hello,

I turned off UAC by setting the bit 3 of PID_WORDCOUNT in my MSI package. I can able to install it for "ALLUSERS" and "PER-USER", and also write in for HKLM in both the modes on VISTA machines. Is it mandatory for you to get UAC popup for privileged user during installation?

link|flag
Turning off this bit did not work for me. Users would get "permission denied" errors, even though they are members of the administrator group. Only the administrator itself could successfully install the package. – Martin v. Löwis Aug 19 at 10:07
vote up -3 vote down

As far as I understand it, UAC (User Account Control) cannot be circumvented programmatically because they want the User to give consent. As an example, what if your installer were started via an exploit on a web page, or in some other similar method without the users consent. UAC gives the user a chance to say that they didn't want to install anything by blocking the installation. It doesn't matter if its on a per user or a per machine basis, as the same scenario applies.

I don't necessarily agree with it, but that is how I understand it to apply. I doubt you will find a way around it. Popping up and bugging the user is pretty much the whole point of UAC.

OLIVER

link|flag
I don't think he is asking how to circumvent UAC, but to have it pop up only when it's needed – Turambar Oct 31 '08 at 16:18
Turambar - exactly so. If UAC doesn't pop up, it should consequentially cause access to restricted resources to fail. However, in a per-user install, there shouldn't be any access to restricted resources, so I want to request from MSI that UAC pops up only conditionally. – Martin v. Löwis Oct 31 '08 at 17:09
As a further comment: it's not the case that UAC is used to protect the user from untrusted programs accessing the user's files. For that, they have a pre-launch check (from ShellExecute) whether the file was downloaded, and pop up a different window if the program is not trustworthy. – Martin v. Löwis Oct 31 '08 at 17:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.