Re: Getting Process Name on Win32

2006-09-06 Thread Stefan Rank
[BTW, there is a list/newsgroup specifically for pywin32] on 06.09.2006 12:56 Rama said the following: > Hi, > > I want to list the names of all the processes running on my > machine. I am stuck at this point and do not know how to extract the > name of a process. > > Using win32pro

Re: Getting Process Name on Win32

2006-09-06 Thread Rama
On 06/09/06, Tim Golden <[EMAIL PROTECTED]> wrote: [Rama]|  I want to list the names of all the processes running on| my machine. I am stuck at this point and do not know how to| extract the name of a process.WMI is good for this kind of thing: http://tgolden.sc.sabren.com/python/wmi_cookbook.h

RE: Getting Process Name on Win32

2006-09-06 Thread Tim Golden
[Rama] | I want to list the names of all the processes running on | my machine. I am stuck at this point and do not know how to | extract the name of a process. WMI is good for this kind of thing: http://tgolden.sc.sabren.com/python/wmi_cookbook.html#running_processes TJG __

Getting Process Name on Win32

2006-09-06 Thread Rama
Hi,  I want to list the names of all the processes running on my machine. I am stuck at this point and do not know how to extract the name of a process. Using win32process.EnumProcesses, I am able to obtain the pids of all the processes and using win32api.OpenProcess() I have obtained a ha