Help on SafeRun.exe:

Copyright(c) 2018 Alexey Kuryakin RU kouriakine@mail.ru.
SafeRun - Win32 utility to run program in Safer mode,v1.5.
Safer mode means restricted process privileges for safety.
Required client Windows XP or Server 2003 at least to run.
Use this program free under the terms of LGPL license.

Usage: saferun [-opt] cmdline

Options (started from - char):
 -v  - verbose mode: MessageBox on errors (default is silent)
       it's better to place this option as 1st option in list
 -w  - wait while cmdline running, default is no waits
       in wait mode SafeRun return cmdline's exit code
 -h  - run cmdline in hidden window (SW_HIDE), default is visible (SW_SHOW)
 -0..9 run with display mode assigned to 0=SW_HIDE(like -h), 1=SW_SHOWNORMAL,
       2=SW_SHOWMINIMIZED, 3=SW_SHOWMAXIMIZED, 4=SW_SHOWNOACTIVATE,
       5=SW_SHOW(default), 6=SW_MINIMIZE, 7=SW_SHOWMINNOACTIVE,
       8=SW_SHOWNA, 9=SW_RESTORE
 -i  - run with IDLE_PRIORITY_CLASS         ( 4  lowest priority)
 -b  - run with BELOW_NORMAL_PRIORITY_CLASS ( 6  lower normal)
 -n  - run with NORMAL_PRIORITY_CLASS       ( 8  default)
 -a  - run with ABOVE_NORMAL_PRIORITY_CLASS ( 10 higher normal)
 -g  - run with HIGH_PRIORITY_CLASS         ( 13 greater normal)
 -r  - run with REALTIME_PRIORITY_CLASS     ( 24 highest)
 -t  - run cmdline in trusted mode, i.e. don't use Safer
 -o  - run cmdline in Safer mode as normal user, by default
 -c  - run cmdline in Safer mode as constrained user
 -u  - run cmdline in Safer mode as untrusted user
 -f  - run cmdline in Safer mode as fully trusted user
 -?  - run this help screen

Exit code returned by SafeRun:
 0   - OK, cmdline was successfully started
 1   - invalid options specified (unsupported opt)
 2   - no arguments specified (empty command line)
 3   - could not create process (invalid cmdline or access)
 4   - exception happened during execution
 n   - in wait mode (-w) SafeRun return cmdline's exit code

Examples:
 saferun firefox.exe - run Web browser in Safer mode with normal user level
 saferun -c firefox  - run Web browser in Safer mode with constrained user level
 saferun -u firefox  - run Web browser in Safer mode with untrusted user level
 saferun -f firefox  - run Web browser in Safer mode  with fully trusted user level
 saferun -t firefox  - run Web browser in normal mode, i.e. don't use Safer at all
 saferun -wv notepad - run notepad in Safer mode with normal user level, wait, verbose
 saferun -htw defrag - run defrag in fully trusted (i.e. normal) mode, hidden, wait result
 saferun -t7 defrag  - run deftag in trusted (i.e. normal) mode, minimized noactive, no wait
