How do you run a custom service in Windows 7? Does anyone know how setup trac as a custom service in Windows 7?

link|improve this question
feedback

migrated from stackoverflow.com Sep 28 '09 at 7:57

This question came from our site for professional and enthusiast programmers.

4 Answers

The link you have provided also points towards Trac On Windows, which seems a pretty complete description of the installation process.

In section 3 I find the following line:

sc create svnserver binpath= "C:\Subversion\bin\svnserve.exe --service -r c:\svnrepositories" displayname= "Subversion Server (svnserver)" depend= Tcpip start= auto

which creates a system service. However, I don't know if that's the service you need.

link|improve this answer
feedback

yep srvany seems to be only way - unless someone else knows another way using

"sc create /?" in cmd prompt (i dont)

link|improve this answer
i think the service being request is "Running Tracd as service" - not sure how to run this as a service on windows 7 – Andy Sep 28 '09 at 8:05
feedback

If you're scared by the command line and not scared to spend money, then FireDaemon allows you to easily set up services.

link|improve this answer
feedback

Take a look at SrvAny from the Windows NT Resource Kit.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown