Separate one process from the visual studio debugger

My question is somewhat similar to this. How to stop debugging (or disconnect a process) without stopping the process?

but I want to disconnect from one process.

for example, I have a windows application that I also attach to a Windows service. I want to disconnect only from the service (separating everything will remove debugging from all executions and, therefore, I will not be able to debug another application).

PS: If possible, refer to visual studio 2008 and 2010.

+46
debugging visual-studio
May 11 '11 at 13:00
source share
3 answers

In the Processes window (Debug → Windows → Processes), right-click the name of the process you want to disable, and select "Detach Process" from the context menu.

+68
May 11 '11 at 13:07
source share
— -

I just wanted to share the fact that the keyboard shortcut (in VS2013) is ctrl + alt + z to open the Process window. A window will appear only if there is at least one process.

+9
Jul 14 '15 at 19:51
source share

If you have Visual Studio Express , there is a window without processes , and I did not understand how to separate only one process.

+1
May 15 '14 at 11:09
source share



All Articles