Re: [cx-freeze-users] freezing problem

2017-08-14 Thread arto rasimus via cx-freeze-users
Thanks for reply!The Config.py and its parameters were a new thing to me (and how it affects the setup.py).But: some questions are still unanswered. base/Win32Service.exe- how to build that in the first place, as it is essential in the freezing process? I made the changes into setup.py and create

Re: [cx-freeze-users] freezing problem

2017-08-14 Thread Anthony Tuininga
Hi Arto, Leandro, You should follow the sample for services found in the cx_Freeze repo: https://github.com/anthony-tuininga/cx_Freeze/tree/master/cx_Freeze/samples/service. If you still have questions after looking through that, let me know. Anthony On Mon, Aug 14, 2017 at 4:40 AM, Leandro Garc

Re: [cx-freeze-users] freezing problem

2017-08-14 Thread Leandro Garcia
Hi Arto, I'm new on this... but if I'm not wrong, the service should be register https://stackoverflow.com/questions/3582108/create-windows-service-from-executable You can run a bat to register it or in another python program... with cx_Freeze but I have never tried! What I understand of the pr

Re: [cx-freeze-users] freezing problem

2017-08-14 Thread arto rasimus via cx-freeze-users
Anybody there? On Wednesday, August 9, 2017 12:18 PM, arto rasimus via cx-freeze-users wrote: Hello. I have question about freezing a Python 3.6 script.The cx_Freeze version has been 5.0.2 My goals:- the exe should operate as a service under Windows10.- the service should be able to r

[cx-freeze-users] freezing problem

2017-08-09 Thread arto rasimus via cx-freeze-users
Hello. I have question about freezing a Python 3.6 script.The cx_Freeze version has been 5.0.2 My goals:- the exe should operate as a service under Windows10.- the service should be able to respond to TCP requests as a server. The exe runs well if the base is "Win32GUI" in the setup.py, but in th