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.
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