Craig Celeste
Craig Celeste

Reputation: 12653

Attach to Visual Studio process by name

For the development I do, I often need to attach to a running process by name (usually a windows service running under a different user account). It is tedious to do:

Debug
Attach to Process...
Select Attach To to switch between Native and Managed code
    (we use both in the same process so it's not set to automatic)
Scroll down to find it in the list
Hit Attach button
Agree to the confirmation to debug a windows service

Since it's always the same process, ideally I would like 2 buttons (macros?) on a custom toolbar. One that attaches for managed debugging and another that attaches for native debugging. In both cases, the process name is built into the macro.

Can someone point me to the right resources/documentation to set something like that up?

Upvotes: 4

Views: 1085

Answers (1)

Sergey Vlasov
Sergey Vlasov

Reputation: 27890

A Visual Studio macro that you can customize for your process name: Attach the VS Debugger to IIS’s Worker Process in a single keystroke.

Debug Attach Manager 2012 extension for VS 2012 that "provides extended abilities to attach Visual Studio debuger to web application pools, windows services and other processes."

Upvotes: 2

Related Questions