4

Possible Duplicate:
How to assign permissions to manage windows service when UAC is enabled?

Our network admin set the ColdFusion 9 Application Server service to start automatically, sometimes the service starts and sometime it doesn't. So is there a way to give a user permissions over a specific service? Any other proposed solutions would also be appreciated.

0

2 Answers 2

3

If you are familiar with the Group Policy Editor, you can implement a GP to allow certain a user (group) access to start/stop a particular service. For more details, see this thread. I'm not sure if you can do this remotely, but I know it is possible on a local policy basis.

1
2

I might approach this task a bit differently: I would consider just setting up a scheduled task to run a batch file with net start service as an administrator every minute.

It is not exactly processor intensive, and if it is already started, it will do nothing. I would put the batch file used to start the service in a location that is secured for administrator only so it cannot be edited to change what it is doing.

This way you also do not have to worry about it not starting if someone is not there to do it manually.

Not the answer you're looking for? Browse other questions tagged .