[python-win32] Trying to run py2exe built/generated executables within a VMWare windows XP 32 bit instance

2012-02-22 Thread Jacob Kruger
Trying to play around with a VMWare player virtual instance of windows XP, 32 bit, service pack 3, etc. to try out, among other things, python executables, code etc., since my primary machine is a windows7 64 bit machine, and while these executables, built using py2exe seem to run fine on actual

Re: [python-win32] Running a Windows Python service without pythonservice.exe?

2012-02-22 Thread Kyle
Bill, did you ever find a resolution to your pythonservice.exe issue? >I've got the PyWin32 extensions installed in a private site-packages >directory under my stuff, which isn't the same as the Python >site-packages site. I need a way to set PYTHONPATH, or in some other >way initialize the DLL l

Re: [python-win32] share remote drive

2012-02-22 Thread Preston Landers
Your question is sorely lacking in detail and therefore may not draw the kind of responses you are hoping for. What, exactly, are you trying to do? Are you trying to create a Windows Share of a local drive from within Python? Are you trying to mount a remote share from Python? A literal parsing

[python-win32] share remote drive

2012-02-22 Thread pacopyc pacopyc
Can I share a remote drive? How? Thank pacopyc ___ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32

Re: [python-win32] Issuing a command via subprocess, other methods in Windows 7

2012-02-22 Thread David Hutto
On Wed, Feb 22, 2012 at 12:59 PM, Tim Roberts wrote: > David Hutto wrote: >> initiates the START command, which means it works, but not on command >> line when using SoundRecorder which is in the system32 dir. I thought >> it might be a directory placement problem, but don't know if that >> would

Re: [python-win32] Issuing a command via subprocess, other methods in Windows 7

2012-02-22 Thread David Hutto
On Wed, Feb 22, 2012 at 12:59 PM, Tim Roberts wrote: > David Hutto wrote: >> initiates the START command, which means it works, but not on command >> line when using SoundRecorder which is in the system32 dir. I thought >> it might be a directory placement problem, but don't know if that >> would

Re: [python-win32] Issuing a command via subprocess, other methods in Windows 7

2012-02-22 Thread Tim Roberts
David Hutto wrote: > initiates the START command, which means it works, but not on command > line when using SoundRecorder which is in the system32 dir. I thought > it might be a directory placement problem, but don't know if that > would be the correct way to fix it, or if that's even the problem.

Re: [python-win32] Issuing a command via subprocess, other methods in Windows 7

2012-02-22 Thread Preston Landers
I thought "start" wasn't an actual executable but rather a builtin command of the cmd.exe shell. Have you tried something like: scope = subprocess.Popen([r'cmd.exe', '/c start SoundRecorder'],shell = True, stdout=subprocess.PIPE) regards, Preston On Wed, Feb 22, 2012 at 1:09 AM, David Hutto wr