Running compiled windows service python script

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

    Running compiled windows service python script

    Hi All

    I have a windows service (attached file). I basically just calls another
    script every 60 seconds. I can install, start and stop this service as
    expected with:
    ParseMailboxSer vice.py install | start | stop

    The problem is: if I create an exe of this script (all required modules
    are included in the exe) with gui2exe (a frontend to py2exe) I can
    install the service - but not start it. The error it returns is "Error
    starting service: The service did not respond to the start or control
    request in a timely fashion."

    Is there something I need to additionally include in the compiled exe? I
    have manually included the following modules:
    * servicemanager
    * win32con
    * win32evtlogutil
    * win32serviceuti l

    I would greatly appreciate any help.

    Regards

    Nicol

    --

    The three things to remember about Llamas:
    1) They are harmless
    2) They are deadly
    3) They are made of lava, and thus nice to cuddle.



  • Mike Driscoll

    #2
    Re: Running compiled windows service python script

    On May 13, 5:15 am, Aspersieman <aspersie...@gm ail.comwrote:
    Hi All
    >
    I have a windows service (attached file). I basically just calls another
    script every 60 seconds. I can install, start and stop this service as
    expected with:
        ParseMailboxSer vice.py install | start | stop
    >
    The problem is: if I create an exe of this script (all required modules
    are included in the exe) with gui2exe (a frontend to py2exe) I can
    install the service - but not start it. The error it returns is "Error
    starting service: The service did not respond to the start or control
    request in a timely fashion."
    >
    Is there something I need to additionally include in the compiled exe? I
    have manually included the following modules:
        * servicemanager
        * win32con
        * win32evtlogutil
        * win32serviceuti l
    >
    I would greatly appreciate any help.
    >
    Regards
    >
    Nicol
    >
    --
    >
    The three things to remember about Llamas:
    1) They are harmless
    2) They are deadly
    3) They are made of lava, and thus nice to cuddle.
    >
     ParseMailBoxSer vice.py
    2KDownload
    I recommend re-posting to the PyWin32 user's group and possibly the
    py2exe group.


    A distutils extension to create standalone windows programs from python scripts.


    Alternatively, you can check these links out that are about creating
    Windows Services in Python:

    This is a message I posted to comp.lang.py regarding ways to run a regular Python script as a Windows service. I will assume you want to tu...




    Hope that helps!

    Mike

    Comment

    Working...