Massi píše v Pá 08. 06. 2012 v 01:07 -0700: > The final executable is an .exe file. > The procedure to install and run a service is pretty simple, from > command line: > > - TestService.exe -install (install the service) > - net start TestService (start the service) > - net stop TestService (stop the service) > - TestService.exe -remove (remove the service)
It seems like the issue is with the executable not responding to signals (start/stop restart). The exe works when running in debug mode - TestService.exe debug however it does not respond to Ctrl+C and is still running. The way to fix it would be probably: - review bootloader code how signals are handled or - fix the way how windows service is initialized, probably some custom steps would be required Additional testing: - could you test pyinstaller 1.5 or 1.5.1 if it works for you and we have a regression in development branch - test script agentservice.py from http://www.pyinstaller.org/ticket/539 if it works for you. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
