How can I debug a process (1.exe) running under another process (2.exe)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T22:35:35Zhttp://stackoverflow.com/feeds/question/75763http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/75763/how-can-i-debug-a-process-1-exe-running-under-another-process-2-exe3How can I debug a process (1.exe) running under another process (2.exe)?Prache2008-09-16T19:02:30Z2008-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#757990Answer by clintp for How can I debug a process (1.exe) running under another process (2.exe)?clintp2008-09-16T19:05:53Z2008-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#758030Answer by Greg Hurlman for How can I debug a process (1.exe) running under another process (2.exe)?Greg Hurlman2008-09-16T19:06:12Z2008-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#758143Answer by AlexDuggleby for How can I debug a process (1.exe) running under another process (2.exe)?AlexDuggleby2008-09-16T19:07:34Z2008-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#758540Answer by Steve Morgan for How can I debug a process (1.exe) running under another process (2.exe)?Steve Morgan2008-09-16T19:10:23Z2008-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#758760Answer by crosstalk for How can I debug a process (1.exe) running under another process (2.exe)?crosstalk2008-09-16T19:12:57Z2008-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#763670Answer by Alex Reitbort for How can I debug a process (1.exe) running under another process (2.exe)?Alex Reitbort2008-09-16T20:07:34Z2008-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>