Re: Running script in background.

2005-05-02 Thread Peter Hansen
Larry Bates wrote: > You have two choices: > > 1) You can use Windows Scheduler to run the script in the > background. I have lots of scripts that I do this with. > > 2) You can convert the script into a Windows Service, which > will run in the background continuously. > > I know of no way to m

Re: Running script in background.

2005-05-01 Thread Nick Addison
Harlin Seritt wrote: Hi, I have a script.py that is converted to .exe using py2exe. From another script I call script.exe and would like to be able to run this script.exe in the background (as well as in console -- giving the user some simple options). How can I make this happen? thanks, Harlin Hav

Re: Running script in background.

2005-05-01 Thread Larry Bates
You have two choices: 1) You can use Windows Scheduler to run the script in the background. I have lots of scripts that I do this with. 2) You can convert the script into a Windows Service, which will run in the background continuously. I know of no way to manually start something in the foregr

Running script in background.

2005-04-30 Thread Harlin Seritt
Hi, I have a script.py that is converted to .exe using py2exe. From another script I call script.exe and would like to be able to run this script.exe in the background (as well as in console -- giving the user some simple options). How can I make this happen? thanks, Harlin -- http://mail.pyth