Run As function

  • Thread starter Thread starter Chris W
  • Start date Start date
C

Chris W

Is there a way to configure an application shortcut so it will
automatically run as a predefined user with a predefined password with
out any interaction from the user.

I have an application that automatically updates its self and those
updates only work if it has administrator rights. But I don't want the
users to have administrator rights so I want just that program to have
administrator rights. I know how to do it manually with the run as
dialog but I don't want the users to have to type in a password and I
don't want them to even know the password.

Chris W
 
Chris said:
Is there a way to configure an application shortcut so it will
automatically run as a predefined user with a predefined password with
out any interaction from the user.

I have an application that automatically updates its self and those
updates only work if it has administrator rights. But I don't want
the users to have administrator rights so I want just that program to
have administrator rights. I know how to do it manually with the run
as dialog but I don't want the users to have to type in a password
and I don't want them to even know the password.

Chris W

would this help any?

http://www.jsiinc.com/SUBG/TIP3200/rh3292.htm
 
The best solution is to change the ACLing on what the app
is modifying so that change is granted to Users group.
All ways of force-feeding adm credentials so as to run the
app as adm in the user's context have issues with that user
being able to access (or try as they are able) those creds.
 
Chris said:
Is there a way to configure an application shortcut so it will
automatically run as a predefined user with a predefined password with
out any interaction from the user.

I have an application that automatically updates its self and those
updates only work if it has administrator rights. But I don't want the
users to have administrator rights so I want just that program to have
administrator rights. I know how to do it manually with the run as
dialog but I don't want the users to have to type in a password and I
don't want them to even know the password.

A very good but expensive solution would be to have your programmers
modify that app so that part of it runs as a service (under the LOCAL
SYSTEM context), and that part would handle the updating.
 
Back
Top