Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 112411
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T02:32:26+00:00 2026-05-11T02:32:26+00:00

When writing plugins for media center your plugin is hosted in ehexthost.exe this exe

  • 0

When writing plugins for media center your plugin is hosted in ehexthost.exe this exe gets launched from ehshell.exe and you have no way of launching it directly, instead you pass a special param to ehshell.exe which will launch the plugin in a separate process.

When we are debugging media browser I find the process of attaching to a second process kind of clunky, I know about Debugger.Attach and also of some special registry entries I can use.

Both these methods don’t exactly fit my bill. What I want is to press F5 and have my current instance of visual studio attach to the child process automatically. Can this be done?

If there is a plugin for VS that allows me to achieve this functionality I would be happy with it.

EDIT

I ended up going with the following macro:

Public Sub CompileRunAndAttachToEhExtHost()      DTE.Solution.SolutionBuild.Build(True)     DTE.Solution.SolutionBuild.Debug()      Dim trd As System.Threading.Thread = New System.Threading.Thread(AddressOf AttachToEhExtHost)     trd.Start()  End Sub  Public Sub AttachToEhExtHost()     Dim i As Integer = 0     Do Until i = 50         i = i + 1         Try              For Each proc As EnvDTE.Process In DTE.Debugger.LocalProcesses                 If (proc.Name.IndexOf('ehexthost.exe') <> -1) Then                     proc.Attach()                     Exit Sub                 End If             Next         Catch e As Exception             ' dont care - stuff may be busy          End Try         Threading.Thread.Sleep(100)     Loop End Sub 

Also, I outlined the process on how to get this going on my blog.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T02:32:26+00:00Added an answer on May 11, 2026 at 2:32 am

    I would use a macro. I’ve redefined my F5 function to attach to the asp.net process instead of the long build/validate it usually performs. This works pretty well for me and it’s really easy.

        For Each process In DTE.Debugger.LocalProcesses         If (process.Name.IndexOf('aspnet_wp.exe') <> -1) Then             process.Attach()             Exit Sub         End If     Next 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 67k
  • Answers 67k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Actually I found the answer in 'Areas', which is supposedly… May 11, 2026 at 11:58 am
  • added an answer Good questions. I think ultimately, the answer is going to… May 11, 2026 at 11:58 am
  • added an answer ## is the concatenation operator; the compiler is just complaining… May 11, 2026 at 11:58 am

Related Questions

When writing plugins for media center your plugin is hosted in ehexthost.exe this exe
I use Vim and Vim plugins for Visual Studio when writing C++. Often, I
When writing a switch statement, there appears to be two limitations on what you
When writing multi-threaded applications, one of the most common problems experienced are deadlocks. My
When writing multithreaded applications, one of the most common problems experienced is race conditions.
When writing production-quality VC++ code, is the use of recursion acceptable? Why or why
When writing code do you consciously program defensively to ensure high program quality and
When writing a T-SQL script that I plan on re-running, often times I use
When writing a custom server, what are the best practices or techniques to determine
When writing C/C++ code, in order to debug the binary executable the debug option

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.