Can I get the ExecutablePath from a System.Management.EventArrivedEventArgs object?
I'm using a System.Management.ManagementEventWatcher to get the process ID and executable path for a started process: private void startWatcher_EventArrived(Object sender, EventArrivedEventArgs e) { String processID = e.NewEvent.Properties["ProcessID"].Value.ToString(); var searcher = new ManagementObjectSearcher(new WqlObjectQ...