Showing posts with label C# debugging. Show all posts
Showing posts with label C# debugging. Show all posts

Saturday, January 14, 2012

Programmatically launch Debugger in a remote machine


ConnectionOptions options = new ConnectionOptions();
 ManagementScope scope = new ManagementScope("\\\\machine1\\root\\cimv2", options);
 scope.Connect();

 ObjectQuery oQuery = new ObjectQuery("Select * from Win32_Process where Name Like 'ConsoleApp%'");
 //Execute the query
 ManagementObjectSearcher objSearcher = new ManagementObjectSearcher(scope,oQuery);

 //Get the results
 ManagementObjectCollection objReturnCollection = objSearcher.Get();

 foreach (ManagementObject oReturn in objReturnCollection)
 {
 if (oReturn["Name"].ToString().Equals("ConsoleApplication1.exe"))
 {
 object outparams = oReturn.InvokeMethod("AttachDebugger", null);
 }
 }

Featured Posts

Kali Linux Remote Desktop: Access GNOME from Windows Using Native RDP

  Kali Linux + GNOME 50 + GNOME Remote Desktop + Windows Remote Desktop (MSTSC) Getting a full GNOME desktop remotely on Kali Linux can be ...