steinshouerj
IS-IT--Management
I am trying to find a way to monitor a subprocess. Using the following wmi code I can get a list of all running processes.
Set colProcesses = objWMIService.ExecQuery _
("SELECT * FROM Win32_Process")
Any running subprocess are not listed. Is there a way of seeing if a subprocess is running?
Set colProcesses = objWMIService.ExecQuery _
("SELECT * FROM Win32_Process")
Any running subprocess are not listed. Is there a way of seeing if a subprocess is running?