Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using: Visual Studio 2012, .NET Framework 4, Windows 7 x64

Sometimes, upon starting my application in debug mode, I see the following line in the Output window:

A first chance exception of type 'System.Runtime.InteropServices.COMException' occurred in Microsoft.VisualStudio.HostingProcess.Utilities.dll

This happens approximately once in every 10 startups and appears to be random (no code is changed, I can just Start, Stop, Start, Stop, etc. until I see the error in Output).

I would like to know what is causing this first-chance exception. I have the option "Tools->Options->Debugging->General->Enable Just My Code" disabled and I have enabled the "Debug->Exceptions...->Common Language Runtime Exceptions->System.Runtime.InteropServices->System.Runtime.InteropServices.COMException" option (see screenshot below) in order to break upon getting the exception, but Visual Studio does not break so I don't know where the issue is.

Exceptions

I've tried placing random breakpoints in my code but it seems that whenever I actually have a breakpoint set then the exception doesn't occur.

share|improve this question

2 Answers

up vote 0 down vote accepted

Sounds like the error is occurring within Visual Studio's attempt to host the process. First Chance exceptions can be caught and handled by applications without further problem. The Output Window is just displaying it has happened. I wouldn't worry about it. Maybe an update to Visual Studio in the future will resolve this.

I would not expect it to occur at Runtime outside of the Visual Studio host process.

share|improve this answer

I know this post is quite old but I wanted to share my solution in case it would help anyone else.

I started having this problem after updating to Visual Studio 2012 Update 1. Only my issue is that is was appearing every time. I could create a new project and just run a blank form and the message would appear. It would get slower with each run.

While trying to find help online I stumbled upon a site talking about running a VS 2012 Command Prompt in Administrator mode (in the tools folder of your Visual Studio 2012 Start Menu)

Unfortunately, I can't remember if I actually performed the ResetSkipPkgs so check for the error before running the second option.

    devenv /Resetsettings
    devenv /ResetSkipPkgs

This resolved my issue. (of course, you will lose any settings you had made to your IDE)

share|improve this answer
/ResetSettings helped me with my issue, and also fixed the mysterious System.Xml.Serialization.CodeGeneratorConversionException I was getting. Thank you for your solution! Also note that in different versions of VS the exe has different names (see stackoverflow.com/questions/9778593/…). E.g. in VS 2012 Express it's WDExpress.exe – Mikhail Jun 11 at 17:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.