Reputation: 7789
So I have this process that after trigger of a certain event gets closed as soon as it gets launched. How do I attach debugger to these processes which run for not more than a few milliseconds or say 1-2 seconds.
This process is not a standalone process, it's a software that launches this process to achieve a particular task.
Upvotes: 0
Views: 78
Reputation: 27930
Microsoft Child Process Debugging Power Tool allows Visual Studio to automatically debug child processes (new processes spawned from a process that you are already debugging).
Upvotes: 1