Allow user to Start/stop certian Service

  • Thread starter Thread starter marka2k
  • Start date Start date
M

marka2k

We are running a managed enviroment, users do not have Administrator Rights
to desktops. However we have run across certain situations where it would be
beneficial to allow a user to be able to start/stop certain services is
there a way to allow this?



Thank you
 
You can make a batch file that will start/stop the service.

the command is

net start SERVICENAME
or
net stop SERVICENAME


(where SERVICENAME is the name of the service...which can be found when you
look at the details of the service services.msc)
 
Back
Top