X
xla76
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.Diagnostics.Process.GetProcesses(PC.Name)
processgrid.Rows.Add(ps.ProcessName, 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.Diagnostics.Process.GetProcesses(PC.Name)
processgrid.Rows.Add(ps.ProcessName, ps.Id)
Next ps
Any ideas how I can get the process path (using vb 2005)
Thanks,
Pete.