ShellExecAsUser plug-in: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
(ShellExecAsUser plug-in)
 
No edit summary
Line 18: Line 18:
Example:
Example:
   ShellExecAsUser::ShellExecAsUser "open" 'http://www.google.com/'  
   ShellExecAsUser::ShellExecAsUser "open" 'http://www.google.com/'  
== Limitations ==
1) if Explorer is not running or running as elevated process, plugin will launch elevated process.
2) The process is launched under the same user Explorer is running. Under some circumstances (e.g. using runas to run installer on behalf of another user) desktop user may be different from before-elevation user.


== Download ==
== Download ==

Revision as of 21:16, 2 October 2011

Description

Execute the specified program using ShellExecute in non-admin context.

The ShellExecAsUser plug-in is intended for installers that run with admin rights, but need to execute something as a normal non-elevated process.

This is accomplished by having Explorer launch the application on the installer’s behalf (http://brandonlive.com/2008/04/27/getting-the-shell-to-run-an-application-for-you-part-2-how/).

As such it's a light alternative to UAC plugin.

Usage

Syntax is exactly the same as NSIS built in ExecShell command:

ShellExecAsUser::ShellExecAsUser action command [parameters] [SW_SHOWDEFAULT | SW_SHOWNORMAL | SW_SHOWMAXIMIZED | SW_SHOWMINIMIZED | SW_HIDE]

Note that action is usually "open", "print", etc, but can be an empty string to use the default action. Parameters and the show type are optional. $OUTDIR is used for the working directory. When installer process is non-elevated (e.g. executed on Windows XP, or UAC is disabled, etc), defaults to ShellExecute method.

Example:

 ShellExecAsUser::ShellExecAsUser "open" 'http://www.google.com/' 

Limitations

1) if Explorer is not running or running as elevated process, plugin will launch elevated process.

2) The process is launched under the same user Explorer is running. Under some circumstances (e.g. using runas to run installer on behalf of another user) desktop user may be different from before-elevation user.


Download

ShellExecAsUser.zip (18 KB)