siddhartha veedaluru wrote:
Hi,
i'm tring to execute a exe that is placed in the mapped network drive
on remote machine
it seems it is not getting recognised.
How can i run the exe on the mapped network drive
Thanks,
Siddhartha
I would use the subprocess module.
<code>
import subprocess
# replace C:\ with map drive letter or use UNC path
subprocess.Popen(r'C:\path\to\exe')
</code>
Mike
_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32