Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I have Presto create a Windows service with a specific user name and password? I'd post what I tried, but I'm not really sure where to start.

share|improve this question

1 Answer

up vote 1 down vote accepted

There are typically three steps to actually creating the service:

enter image description here

First, actually create the service:

/c sc create "$(serviceName) $(serviceNameSuffix)" binPath= "$(servicePath)"

enter image description here

Second, configure the user and password:

/c sc config "$(serviceName) $(serviceNameSuffix)" obj= "$(account)" password= "$(password)" start= auto

enter image description here

Third, start the service:

enter image description here

As you can see, you're simply using a Window's command prompt to do each of these. Whatever you can do at a command prompt, you can do in Presto.

share|improve this answer
Excellent! Thanks! – Jim Jul 6 '12 at 4:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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