Re: Run as Service

2008-07-23 Thread misceverything
Jay/Larry - Thanks for the suggestions! -- http://mail.python.org/mailman/listinfo/python-list

Re: Web Server

2008-07-23 Thread misceverything
Thanks, guys..I think I am going to go the route Fredrik suggested. Thanks for all your help! -- http://mail.python.org/mailman/listinfo/python-list

Re: Web Server

2008-07-20 Thread misceverything
Thanks, Fredrik - that definitely works. Now to get a little greedy - is there something along those lines that is a bit more secure (i.e. allows HTTPS, possibly with authentication)? Basically something that you would feel more comfortable opening up to the Internet.. -- http://mail.python.org/

Run as Service

2008-07-20 Thread misceverything
I have, in the past, used SRVANY to run a Python app as a Windows service. However, now I am interested in distributing my scripts and want to make it as painless for the end user as possible (hands-off is best :). How can you go about running a Python app as a Windows service without SRVANY? --

Web Server

2008-07-20 Thread misceverything
As part of a Python app I wrote recently (for Windows), I would like to give the option of an HTTP (HTTPS if possible, but not necessary) front end, which would then call some existing python scripts. My question is - I know I can write a simple HTTP server in Python, but if there's something simp

Recursively Backup Directories

2008-04-05 Thread misceverything
I am writing a script that will backup specified folders from one hard drive to another (for example, backup source "C:\DATA", destination "D: \Backup"), and was thinking of using shutil. What I would like to do is recursively backup the specified directories (which copytree will do), but be able

Re: Finding Full Path to Process EXE

2008-03-31 Thread misceverything
On Mar 31, 2:50 am, Tim Golden <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > That's not a problem - I'm only interested in Win2k+. Thanks for the > > caveat. > > > On a similar note, is there a way (preferably using WMI) to get the > > full path to the executable that has a port open (

Re: Finding Full Path to Process EXE

2008-03-30 Thread misceverything
That's not a problem - I'm only interested in Win2k+. Thanks for the caveat. On a similar note, is there a way (preferably using WMI) to get the full path to the executable that has a port open (the same thing that fport does, just implemented in Python)? -- http://mail.python.org/mailman/listin

Re: Finding Full Path to Process EXE

2008-03-29 Thread misceverything
On Mar 28, 4:53 pm, Tim Golden <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > Hello, > > > I would like to write a script that would enumerate all running > > processes and return the full path to the EXE of each running > > process. However, I can't seem to find any good info on how to

Finding Full Path to Process EXE

2008-03-28 Thread misceverything
Hello, I would like to write a script that would enumerate all running processes and return the full path to the EXE of each running process. However, I can't seem to find any good info on how to do this..any help is greatly appreciated. Thanks. T -- http://mail.python.org/mailman/listinfo/pyt