RE: os.system in a service

2009-08-06 Thread Lawrence Wong
eryone. > To: python-list@python.org > From: gagsl-...@yahoo.com.ar > Subject: Re: os.system in a service > Date: Thu, 6 Aug 2009 05:35:57 -0300 > > En Thu, 06 Aug 2009 03:59:13 -0300, Diez B. Roggisch > escribió: > > Gabriel Genellina schrieb: > >> En Wed,

Re: os.system in a service

2009-08-06 Thread Gabriel Genellina
En Thu, 06 Aug 2009 03:59:13 -0300, Diez B. Roggisch escribió: Gabriel Genellina schrieb: En Wed, 05 Aug 2009 13:07:39 -0300, Lawrence Wong escribió: I wrote a program which runs a .bat file using os.system like: 'os.system(pathToBatFile)' and everything was good. Then I decided to tu

Re: os.system in a service

2009-08-06 Thread Diez B. Roggisch
Gabriel Genellina schrieb: En Wed, 05 Aug 2009 13:07:39 -0300, Lawrence Wong escribió: I wrote a program which runs a .bat file using os.system like: 'os.system(pathToBatFile)' and everything was good. Then I decided to turn my program into a service as opposed to being run with the comman

Re: os.system in a service

2009-08-05 Thread Gabriel Genellina
En Wed, 05 Aug 2009 13:07:39 -0300, Lawrence Wong escribió: I wrote a program which runs a .bat file using os.system like: 'os.system(pathToBatFile)' and everything was good. Then I decided to turn my program into a service as opposed to being run with the command prompt showing. When