Re: [python-win32] How to get command line parameters of running processes via pywin32

2007-12-06 Thread Michel Claveau
Hi! WMI don't get command-line arguments, on windows released prior XP. Another (external) solution is commandline.exe tool. See : http://www.develop.com/us/technology/resourcedetail.aspx?id=ebf17b42-c3ee-47ee-8c53-73381e710c45 or http://www.bearcanyon.com/tools/ (Running Process Command

Re: [python-win32] How to get command line parameters of running processes via pywin32

2007-12-06 Thread Tim Golden
Tim Roberts wrote: > Patrick Li wrote: >> I am interested in scanning the user's process table periodically and >> getting the list of running process names as well as their command >> line parameters. >> >> For the process names, I am able to get the list of pids using >> win32process.EnumProcess

Re: [python-win32] How to get command line parameters of running processes via pywin32

2007-12-05 Thread Tim Roberts
Patrick Li wrote: > > I am interested in scanning the user's process table periodically and > getting the list of running process names as well as their command > line parameters. > > For the process names, I am able to get the list of pids using > win32process.EnumProcesses and then use win32api.

[python-win32] How to get command line parameters of running processes via pywin32

2007-12-05 Thread Patrick Li
Hi, I am interested in scanning the user's process table periodically and getting the list of running process names as well as their command line parameters. For the process names, I am able to get the list of pids using win32process.EnumProcesses and then use win32api.OpenProcess and win32proces