Using WMI I can get the full path of a process on a remote computer:
"SELECT ExecutablePath FROM Win32_Process"
Without wmi I can get theprocessname and id:
For Each ps In System.Diagnost ics.Process.Get Processes(PC.Na me)
processgrid.Row s.Add(ps.Proces sName, ps.Id)
Next ps
Any ideas how I can get the process path (using vb 2005)
Thanks,
Pete.
"SELECT ExecutablePath FROM Win32_Process"
Without wmi I can get theprocessname and id:
For Each ps In System.Diagnost ics.Process.Get Processes(PC.Na me)
processgrid.Row s.Add(ps.Proces sName, ps.Id)
Next ps
Any ideas how I can get the process path (using vb 2005)
Thanks,
Pete.
Comment