Suppress UAC on selected applications.
Steps
Registry
1 – Save as Suppress.reg:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\forcerunasinvoker]
@=”Run without UAC”
[HKEY_CLASSES_ROOT\*\shell\forcerunasinvoker\command]
@=”cmd /min /C \”set __COMPAT_LAYER=RUNASINVOKER && start \”\” \”%1\”\””
2 – Apply Suppress.reg.
3 – Right click on your application.
Or
Batch file
cmd /min /C “set __COMPAT_LAYER=RUNASINVOKER && start “” “C:\PathToApp\foo.exe””””
Notes
RUNAS /trustlevel:<TrustLevel> program
/showtrustlevels displays the trust levels that can be used
as arguments to /trustlevel.
/trustlevel <Level> should be one of levels enumerated
in /showtrustlevels.
tags: registry, UAC, suppress elevation, MrNetTek