How can I debug a process (1.exe) running under another process (2.exe)? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:35:35Z http://stackoverflow.com/feeds/question/75763 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/75763/how-can-i-debug-a-process-1-exe-running-under-another-process-2-exe 3 How can I debug a process (1.exe) running under another process (2.exe)? Prache 2008-09-16T19:02:30Z 2008-09-21T17:53:11Z <p>1.exe doesn't give enough time for me to launch the IDE and attach 1.exe to the debugger to break into.</p> http://stackoverflow.com/questions/75763/how-can-i-debug-a-process-1-exe-running-under-another-process-2-exe/75799#75799 0 Answer by clintp for How can I debug a process (1.exe) running under another process (2.exe)? clintp 2008-09-16T19:05:53Z 2008-09-16T19:05:53Z <p>I assume you have the source to 1.exe (if you're debugging it), then just insert a statement near the beginning that will cause it to hang around long enough to attach a debugger. ( getch() if you're desperate and it's not interactive. )</p> <p>After the attach, just skip to the next statement and let it go.</p> http://stackoverflow.com/questions/75763/how-can-i-debug-a-process-1-exe-running-under-another-process-2-exe/75803#75803 0 Answer by Greg Hurlman for How can I debug a process (1.exe) running under another process (2.exe)? Greg Hurlman 2008-09-16T19:06:12Z 2008-09-16T19:06:12Z <p>You could put in some preprocessor commands for debug builds - just remember to build your release in release mode:</p> <pre><code>#ifdef DEBUG Thread.Sleep(10000); #endif </code></pre> http://stackoverflow.com/questions/75763/how-can-i-debug-a-process-1-exe-running-under-another-process-2-exe/75814#75814 3 Answer by AlexDuggleby for How can I debug a process (1.exe) running under another process (2.exe)? AlexDuggleby 2008-09-16T19:07:34Z 2008-09-16T19:07:34Z <p>I would suggest taking the same approach as with NT services in this case. They will also start and usually not give you enough time to attach the debugger for the start-up routines.</p> <p>Details are described here: <a href="http://www.debuginfo.com/articles/debugstartup.html" rel="nofollow">http://www.debuginfo.com/articles/debugstartup.html</a></p> <p>In short you add a registry entry for the second exe:</p> <blockquote> <p>HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\2.exe Debugger = "c:\progs\msvs\common7\ide\devenv.exe /debugexe" (REG_SZ)</p> </blockquote> <p>Change the c:\progrs\msms\ to match your settings.</p> <p>Hope that helps.</p> http://stackoverflow.com/questions/75763/how-can-i-debug-a-process-1-exe-running-under-another-process-2-exe/75854#75854 0 Answer by Steve Morgan for How can I debug a process (1.exe) running under another process (2.exe)? Steve Morgan 2008-09-16T19:10:23Z 2008-09-16T19:10:23Z <p>How is 1.exe launched? If you can launch it using CreateProcess(), you can start the process in a suspended state, attach the debugger, then release the new process.</p> http://stackoverflow.com/questions/75763/how-can-i-debug-a-process-1-exe-running-under-another-process-2-exe/75876#75876 0 Answer by crosstalk for How can I debug a process (1.exe) running under another process (2.exe)? crosstalk 2008-09-16T19:12:57Z 2008-09-16T19:12:57Z <p>If you are willing to consider a debugger other than Visual Studio, <a href="http://www.microsoft.com/whdc/devtools/debugging/install64bit.mspx" rel="nofollow">WinDBG</a> can auto-debug child processes (native code only).</p> http://stackoverflow.com/questions/75763/how-can-i-debug-a-process-1-exe-running-under-another-process-2-exe/76367#76367 0 Answer by Alex Reitbort for How can I debug a process (1.exe) running under another process (2.exe)? Alex Reitbort 2008-09-16T20:07:34Z 2008-09-16T20:07:34Z <p>You did not mention what language you are using. But if you using C# or VB.NET you can add Debug.Break() or Stop to trigger the prompt to attach debugger to the process.</p> <p>Or as mentioned above just use something like Console.Readline() or MessageBox.Show() to pause starting of process untill you can attach debugger to it.</p>