Windows 2000 service app

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Tomas Christiansen

    #1

    Windows 2000 service app

    Need a simple, robust way to make a Python-app act as a real service in
    Windows 2000 (so that it can be started/stopped with NET START/STOP).

    Can someone with experience on this topic give a bid?

    -------
    Tomas

  • Chris Liechti

    #2
    Re: Windows 2000 service app

    "Tomas Christiansen" <toc-01-nospam@blikroer .dk> wrote in
    news:bnur0d$gib $1@news.cyberci ty.dk:
    [color=blue]
    > Need a simple, robust way to make a Python-app act as a real service in
    > Windows 2000 (so that it can be started/stopped with NET START/STOP).
    >
    > Can someone with experience on this topic give a bid?[/color]

    no experience here, but the py2exe examples seem to have a working service
    with start/stop commands. (saw that in the 0.5 prerelease)

    chris

    --
    Chris <cliechti@gmx.n et>

    Comment

    • Jeff Hinrichs

      #3
      Re: Windows 2000 service app

      "Tomas Christiansen" <toc-01-nospam@blikroer .dk> wrote in message
      news:bnur0d$gib $1@news.cyberci ty.dk...[color=blue]
      > Need a simple, robust way to make a Python-app act as a real service in
      > Windows 2000 (so that it can be started/stopped with NET START/STOP).
      >
      > Can someone with experience on this topic give a bid?[/color]
      I've used it with py2exe 0.4.1 on NT/2K/XP and it works just fine. Download
      the py2exe-samples and look in the service directory.
      That should get you started.

      -jeff


      Comment

      Working...