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

After installing Visual Studio 2008 and SQL Server 2008 on Windows 7, I get the following error when connecting to a server with SQL Management Studio:

Unable to cast COM object of type 'System.__ComObject' to interface type 'Microsoft.VisualStudio.OLE.Interop.IServiceProvider'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{6D5140C1-7436-11CE-8034-00AA006009FA}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)). (Microsoft.VisualStudio.OLE.Interop)

I've seen blog postings recommending reregistering actprxy.dll, but this has no effect. Anyone know how to resolve this issue?

share|improve this question
I'm having a similar error when I try to publish with ClickOnce (no sql-server involved) – Jared Updike Apr 9 '10 at 0:11

1 Answer

actprxy.dll also didn't work for me. I found a solution that worked here

regsvr32 "C:\Program Files\Internet Explorer\ieproxy.dll"

if you are running 64 bit windows, try this:

regsvr32 "C:\Program Files> (x86)\Internet Explorer\ieproxy.dll"

share|improve this answer
3  
+1 solution solved my issue..thanks – Matt Aug 3 '11 at 14:15
1  
+1 Helped me too. – WillDud Apr 25 '12 at 9:02
I was running into this issue on the new (as of April 2012) Visual Studio 11 beta. Running this step fixed it for me. Thank you! – Judah Himango Apr 25 '12 at 21:48
1  
+1 Saved me re-installing management studio; thanks! – WestDiscGolf Jul 12 '12 at 10:46

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.