RUN AS!

  • Thread starter Thread starter TW
  • Start date Start date
T

TW

Is there a way to force a program to "run
as"...administrator of the local machine everytime it is
open without the administrator having to set it up every
time?
 
Create a shortcut to the launcher for the app.
R-click into the properties of the shortcut and
use the second tab to set it to use alternate credentials.
Alternatively, do not change in the second tab, but
instead edit the target line so instead of
appcommand=path and args
it says
runas /u:account "appcommand=path and args"
At a cmd prompt
runas /?
will give you syntax info for the runas command.
 
Back
Top