[python-win32] win32ras / Create PhonebookEntry

2006-06-02 Thread Gabriel Reis
Hi,I want to create a DIAL-UP connection AND a DIAL-IN connection using WIN32 API (PyWin32) without GUI interaction with the user. The function CreatePhonebookEntry available in win32ras module uses that kind of GUI interaction. I'd like to know if there's a silent or user-transparently way to do t

Re: [python-win32] Re: Getting path+executable associated with a process

2005-02-10 Thread Gabriel Reis
ull path to the executable file) and compares it to each process' executable name. It is very useful to determine wheter a program is running or not. E.g.: IsRunning('C:\\Program Files\\Mozilla Firefox\\firefox.exe') should return True, if Firefox browser is opened. Thanks again, Gabr

[python-win32] Getting path+executable associated with a process

2005-02-09 Thread Gabriel Reis
ad PyWin32 documentation and browsed this maillist's history and I couldn't find anything specifically. With the method MakeCounterPath I can get information (items) such as Memory, Process ID or % CPU... so I am wondering if I can get the executable path too, once I have the PID. Best re