I want to run a service in windows which will keep running in background and will run a cron with specific time.
how i can do that in windows using python?

link|improve this question

0% accept rate
1  
See {Creating a python win32 service}(stackoverflow.com/questions/263296/…). – martineau Dec 14 '10 at 8:43
feedback

3 Answers

Use pywin32. A tutorial was written (in 2005 mind you) here about how one might do that.

link|improve this answer
feedback

Make sure win32 api is installed. Basically, you subclass the BasicNTService. The win32 package docs has some more information. I also have a working example in some code I wrote that does this. WindowsServer.py that also mixes in Pyro for a Python remote control agent.

link|improve this answer
feedback

A combination of cx_freeze and srvany could do the job.

See this for srvany usage (replace dropbox with your exe)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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