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.

link|improve this question

feedback

closed as exact duplicate by grawity, techie007, Sathya Jul 29 '11 at 4:20

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 3 down vote accepted

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.

link|improve this answer
This is a lot more complicated, but if he wants to try it this way, this is a better guide: serverfault.com/questions/55961/… – KCotreau Jul 28 '11 at 15:48
feedback

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.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.