This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Launch MSI with Elevated Access Permission
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎Jun 08, 2010
07:09 AM
Launch MSI with Elevated Access Permission
Hi,
We used to create Single MSI and single EXE for installtion.
The package required administrator privilege to install. Now the situation is that
Project type : Basic MSI
Required Administrative Privilege = Yes
Required Execution Level = Yes
Install Condition is set to = AdminUsers
To check the administrative access i create a key in HKEY_LOCAL_MACHINE... if key get created successfully then i assume that installation is running in admin mode else i aborted the installation.
When i run setup.exe by double click on Windows7, 64 bit machine with admin user than installation success,
When i run setup.msi by double click on Windows7, 64 bit machine with admin user than i am not able to create the registry and installation fails.
When i run setup.msi by double click on WindowsXP machine with admin user than installation success
When i run setup.msi by double click on WindowsXP, 64 bit machine with non admin user than it prompt that user need admin access and doesn't even goes to script.
:mad:
Now as per my knowledge setup.exe launches the msi with admin privileged but on directly trying to install with msi the msi get launched with non elevated access.
If i create a batch file and then right click and run as admin then installation is successful.
I have gone through some threads which tell to set MSIDEPLOYMENTCOMPLIANT=1. But i didn't get when, where and how to set this property value to one.
In the first custom action i tried to set this value but that doesn't work and in the same function i am checking for admin privilege.
Help.
Thanks
We used to create Single MSI and single EXE for installtion.
The package required administrator privilege to install. Now the situation is that
Project type : Basic MSI
Required Administrative Privilege = Yes
Required Execution Level = Yes
Install Condition is set to = AdminUsers
To check the administrative access i create a key in HKEY_LOCAL_MACHINE... if key get created successfully then i assume that installation is running in admin mode else i aborted the installation.
When i run setup.exe by double click on Windows7, 64 bit machine with admin user than installation success,
When i run setup.msi by double click on Windows7, 64 bit machine with admin user than i am not able to create the registry and installation fails.
When i run setup.msi by double click on WindowsXP machine with admin user than installation success
When i run setup.msi by double click on WindowsXP, 64 bit machine with non admin user than it prompt that user need admin access and doesn't even goes to script.
:mad:
Now as per my knowledge setup.exe launches the msi with admin privileged but on directly trying to install with msi the msi get launched with non elevated access.
If i create a batch file and then right click and run as admin then installation is successful.
I have gone through some threads which tell to set MSIDEPLOYMENTCOMPLIANT=1. But i didn't get when, where and how to set this property value to one.
In the first custom action i tried to set this value but that doesn't work and in the same function i am checking for admin privilege.
Help.
Thanks
(2) Replies
‎Jun 08, 2010
08:37 AM
Your testing shows the correct behaviour.
The setup.exe is used to elevate the privileges - this is why the installation is pass.
When you double click the msi directly, there is no elevation of privileges.
You custom action is probably 'immediate' hence you can not make changes to the secure regsitry part, as immediate actions always run in user context mode.
Try to set a value in the registry using a deferred in system context action.
The setup.exe is used to elevate the privileges - this is why the installation is pass.
When you double click the msi directly, there is no elevation of privileges.
You custom action is probably 'immediate' hence you can not make changes to the secure regsitry part, as immediate actions always run in user context mode.
Try to set a value in the registry using a deferred in system context action.
‎Jun 09, 2010
12:30 AM
Thanks for fast reply !
This helped a lot...
This helped a lot...