[python-win32] Error calling win32pdh.EnumObjectItems

2005-11-28 Thread Rogelio Flores
Can anyone tell me what this error message means? win32pdhutil.ShowAllProcesses() Traceback (most recent call last): File stdin, line 1, in ? File c:\...\win32pdhutil.py, line 67, in ShowAllProcesses items, instances = win32pdh.EnumObjectItems(None,None,object, win32pdh.PERF_

[python-win32] How do I get a child's PID, or the whole process tree?

2005-03-07 Thread Rogelio Flores
Using win32process.CreateProcess, I can get the process handle/pid of a process I launch. Now this process launches other processes and they in turn launch other processes without using CreateProcess (so I don't have their pids), to the point where I know there are at least two levels of

[python-win32] Re: How do I get a child's PID, or the whole process tree?

2005-03-07 Thread Rogelio Flores
On Mon, 7 Mar 2005 10:06:01 -0500, Rogelio Flores [EMAIL PROTECTED] wrote: Using win32process.CreateProcess, I can get the process handle/pid of a process I launch. Now this process launches other processes and they in turn launch other processes without using CreateProcess (so I don't have