Good day.
I've been building an installer for our product using the WIX(Windows Installer XML) technology. The expected behavior is that the product is launched, if the check box is checked after installation.
This has been working for some time now, but we found out recently that UAC of Win 7, and Vista is stopping the application from launching. I've done some research and it has been suggested to me that I should add the attributes
Execute='deferred' and Impersonate='no'.
Which I did, but then found out that to execute deferred, the CustomAction has to be performed, between the InstallInitialize, and IntallFinalize phases; which is not what I need. I need the product to launch AFTER install finalize, IF the launch checkbox is checked. Is there any other way to elevate permissions?
Any and all answers, suggestions, or resonings will be appreciated.
The WiX toolset documentation has a topic called How To: Run the Installed Application After Setup that covers how to do this.
Unfortunately, the topic that Rob mentioned doesn't really help for Windows Vista or 7 as I have found. Especially with UAC turned on.
The way I have got around this is to use a CustomAction that launches the command prompt and launches the application you want.
Hope that helps.
Ray
See WiX and DTF: Using a bootstrapper to force elevated privileges in Vista how you can run the whole msi elevated.
You can automate this in the .wixproj file with help of the GenerateBootstrapper task. To summarize:
Create a setup.manifest like this:
And modify your .wixproj file like this:
Now a correct setup.exe which will run elevated will be generated on every build.