Re: Launch Windows command window....

2006-02-03 Thread Ernesto
wait a minute, that did work correctly. Thanks ! -- http://mail.python.org/mailman/listinfo/python-list

Re: Launch Windows command window....

2006-02-03 Thread Ernesto
jay graves wrote: > > This should work but only lightly tested. > subprocess.Popen("start telnet.exe -f C:\Folder\output.txt localhost > 6000",shell=True) Thanks a lot, but this still didn't launch a seperate telnet window. I just want the telnet window to open up and do "it's thing" in the back

Re: Launch Windows command window....

2006-02-03 Thread jay graves
Ernesto wrote: > subprocess.Popen("telnet.exe -f C:\Folder\output.txt localhost 6000") > is improved, but still doesn't launch a SEPERATE window... This should work but only lightly tested. subprocess.Popen("start telnet.exe -f C:\Folder\output.txt localhost 6000",shell=True) You don't say what y

Re: Launch Windows command window....

2006-02-03 Thread Ernesto
I'm one step closer... subprocess.Popen("telnet.exe -f C:\Folder\output.txt localhost 6000") is improved, but still doesn't launch a SEPERATE window... -- http://mail.python.org/mailman/listinfo/python-list

Launch Windows command window....

2006-02-03 Thread Ernesto
I'm trying to launch a seperate telnet window from within my python program. The command I thought I was supposed to use is below: os.system("telnet.exe -f C:\Folder\output.txt localhost 6000") This creates a telnet window inside the current window. This is not desirable. I need it to launch a