I have an installer I'd like to run from a script. The installer requests UAC elevation but it doesn't need elevation because I'm installing to a user directory. Is there some way to run the installer so that it doesn't request UAC elevation?

The script is written in Python so I can access the Windows API through ctypes.

Changing the installer is not an option.

link|improve this question

80% accept rate
What installer is it? This might be a duplicate of: stackoverflow.com/questions/252871/… – John Zwinck Aug 17 '11 at 1:27
@John it's an exe created by Inno Setup. – Peter Graham Aug 17 '11 at 1:36
2  
This superuser question appears to be relevang. – Henning Makholm Aug 17 '11 at 1:37
Does renaming the EXE help? – Gabe Aug 17 '11 at 1:57
1  
You could try installing with msiexec /i [package_name.msi] ALLUSERS=2. I think for a normal user this does a user install and for administrators it installs for all users. – eryksun Aug 17 '11 at 3:04
show 2 more comments
feedback

1 Answer

You have to set the enviromnet variable __compat_layer for your process to RunAsInvoker. Then you can run the executable without any UAC prompt.

You can use the Windows API function SetEnvironmentVariable for this purpose.

link|improve this answer
Norbert, could you do me a favour and post the same answer to my question: stackoverflow.com/questions/7004310/… the system is complaining because I haven't accepted an answer :-) – Harry Johnston Sep 24 '11 at 3:22
I answered your question. – Norbert Willhelm Sep 24 '11 at 9:43
feedback

Your Answer

 
or
required, but never shown

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