I have the following problem:
My installer needs to run with administrator rights in Vista (elevated) because it needs to write file in the program files directory.
I did that by adding the following line:
RequestExecutionLevel highest However.At the end of my installer, I'd like to run an executable as a normal, non-elevated user.
I start a process as follows:
ExecShell "" "explorer.exe" Why do I want this?Well.
If you run explorer in elevated mode, you won't be able to drag and drop files to it from non-elevated explorer windows.
Very annoying.
So, is there a simple way to run a process unelevated from within an elevated installer?