VS2008 Hang Debugger

I am using Visual Studio 2008 Team System Service Pack 1 (SP1), and I noticed an annoying tendency for the IDE to hang within a few (10-15) seconds when I stop debugging the application. At first, I thought this only happened with WPF applications, but I watched the behavior in Windows Forms applications and on ASP.NET sites. I made a number of changes to Options based on this previous post and performed exhaustive Google / MSDN searches, but still haven't found a way to stop this.

Does anyone have any idea?


@ korona - No, that can't be fixed. Thank you for your offer.

More research at ProcMon shows this interesting tidbit, not sure if this is related:

8:45:46.6790857 AM WindowsFormsApplication1.vshost.exe 7684 FASTIO_CHECK_IF_POSSIBLE C:\WINXP\Microsoft.NET\Framework\v2.0.50727\CONFIG\enterprisesec.config.cch FAST IO DISALLOWED Operation: Read, Offset: 48, Length: 12 8:45:46.6793569 AM WindowsFormsApplication1.vshost.exe 7684 ReadFile C:\WINXP\Microsoft.NET\Framework\v2.0.50727\CONFIG\enterprisesec.config.cch FAST IO DISALLOWED Offset: 508, Length: 12 

This is repeated several times, like hundreds of times, then switches to another path:

 8:45:46.7470314 AM WindowsFormsApplication1.vshost.exe 7684 FASTIO_CHECK_IF_POSSIBLE D:\documents and settings\myusername\Application Data\Microsoft\CLR Security Config\v2.0.50727.42\security.config.cch FAST IO DISALLOWED Operation: Read, Offset: 48, Length: 12 8:45:46.7472187 AM WindowsFormsApplication1.vshost.exe 7684 ReadFile D:\documents and settings\myusername\Application Data\Microsoft\CLR Security Config\v2.0.50727.42\security.config.cch FAST IO DISALLOWED Offset: 508, Length: 12 

And it repeats again many times, with slight changes in the offset of each iteration. Maybe not related, but ....

+6
visual-studio-2008
source share
9 answers

Looking at your ProcMon results, it seems like it's a CreateFile () call that takes all the time. I assume all activity is awaiting the return of this thread. You can verify this - with some difficulties - in Process Explorer (also part of the previously bundled SysInternals package) using the Threads tab in the Properties window.

So, if CreateFile is the cause of the lock, this suggests that this is a delay in Windows itself. What Pierre said - pay attention to network shares - was also my first instinct. In the past, I had many seemingly inexplicable slowdowns when Explorer had a comparison with a share that I could not get at the moment, although at that time I did not work on these shares.

Can you test this feature by untying all your drives and unplugging it from the network? Is there D: a separate physical disk from C :? If so, see if this is faster if you move the assembly directory to C :.

+2
source share

I observed this behavior on one of my development machines and Visual Studio 2005. The problem was caused by the fact that Visual Studio was trying to reach some non-existent network resource (I do not remember exactly why). You can give Process Monitor a try to make sure that your Visual Studio tries to do something stupid when it finishes debugging and returns to normal view, Maybe because you have a broken plugin in the toolbar or toolbar.

+2
source share

Bingo! This has something to do with network share. I don’t know which one yet, but now it’s pretty easy for me to understand what I know where to look. I took your advice, unhooked my network adapter, disconnected the network drives, and started again. Do not hang! Thank you so much. This will greatly improve life.

+1
source share

From the site below, I found several possible solutions.

http://social.msdn.microsoft.com/Forums/en/vsdebug/thread/e9c5da47-a194-4051-a3d5-28b404263b3f

It’s best to work with Internet Explorer. Then go to the menu "Tools" - "Internet Options" β†’ "Advanced" β†’ "Security", uncheck the box "Check publication of publisher certificate"

+1
source share

Is it a hangover even with basic apps? How to create a new window shape and then debug it, or is it just with more complex applications? Because I noticed this before (maybe not quite 10-15 seconds, but there was a bit of a lag that I noticed), but when I just tried to debug a relatively simple application for windows, I did not get it at all.

0
source share
Good question. I created a very simple Windows Forms application:
 private void button1_Click(object sender, EventArgs e) { MessageBox.Show("I am saying hello."); } 

Still 10 seconds when closing the form.

0
source share

@ Pierre - I launched ProcMon on devenv.exe and timed the application to close. The results are interesting. It hung for 15 seconds, and you can see it hanging in ProcMon. From 8:45 to 8:45:46 no activity was registered. I'm going to get confused with the filter in ProcMon and see if there is something outside of devenv.exe, but here is what I wrote from devenv.exe around the 15 second interval:

 8:45:31.0221244 AM devenv.exe 7096 QueryNameInformationFile D:\Working\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.vshost.exe BUFFER OVERFLOW Name: \W 8:45:31.0227991 AM devenv.exe 7096 CreateFile D:\Working\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.vshost.exe.Manifest NAME NOT FOUND Desired Access: Generic Read/Execute, Disposition: Open, Options: Synchronous IO Non-Alert, Non-Directory File, Attributes: n/a, ShareMode: Read, AllocationSize: n/a 8:45:46.7647624 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\CLSID\{141243A4-76E6-4FC3-A114-EAE02389304E} NAME NOT FOUND Desired Access: Read 8:45:46.7647792 AM devenv.exe 7096 RegOpenKey HKCR\CLSID\{141243A4-76E6-4FC3-A114-EAE02389304E} NAME NOT FOUND Desired Access: Read 8:45:46.7649139 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\CLSID\{141243A4-76E6-4FC3-A114-EAE02389304E} NAME NOT FOUND Desired Access: Read 8:45:46.7649264 AM devenv.exe 7096 RegOpenKey HKCR\CLSID\{141243A4-76E6-4FC3-A114-EAE02389304E} NAME NOT FOUND Desired Access: Read 8:45:46.9834610 AM devenv.exe 7096 RegQueryValue HKCU\Software\Microsoft\VisualStudio\9.0\UseMRUDocOrdering NAME NOT FOUND Length: 144 8:45:46.9835087 AM devenv.exe 7096 RegQueryValue HKLM\SOFTWARE\Microsoft\VisualStudio\9.0\UseMRUDocOrdering NAME NOT FOUND Length: 144 8:45:46.9865681 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\ReSharper.ReSharper_MoveLeft NAME NOT FOUND Desired Access: Read 8:45:46.9865881 AM devenv.exe 7096 RegOpenKey HKCR\ReSharper.ReSharper_MoveLeft NAME NOT FOUND Desired Access: Read 8:45:46.9866155 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\ReSharper.ReSharper_MoveLeft NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9866285 AM devenv.exe 7096 RegOpenKey HKCR\ReSharper.ReSharper_MoveLeft NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9869661 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\ReSharper.ReSharper_MoveRight NAME NOT FOUND Desired Access: Read 8:45:46.9869813 AM devenv.exe 7096 RegOpenKey HKCR\ReSharper.ReSharper_MoveRight NAME NOT FOUND Desired Access: Read 8:45:46.9870055 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\ReSharper.ReSharper_MoveRight NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9870177 AM devenv.exe 7096 RegOpenKey HKCR\ReSharper.ReSharper_MoveRight NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9872667 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\ReSharper.ReSharper_MoveUp NAME NOT FOUND Desired Access: Read 8:45:46.9872818 AM devenv.exe 7096 RegOpenKey HKCR\ReSharper.ReSharper_MoveUp NAME NOT FOUND Desired Access: Read 8:45:46.9873078 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\ReSharper.ReSharper_MoveUp NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9873207 AM devenv.exe 7096 RegOpenKey HKCR\ReSharper.ReSharper_MoveUp NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9875683 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\ReSharper.ReSharper_MoveDown NAME NOT FOUND Desired Access: Read 8:45:46.9875873 AM devenv.exe 7096 RegOpenKey HKCR\ReSharper.ReSharper_MoveDown NAME NOT FOUND Desired Access: Read 8:45:46.9876141 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\ReSharper.ReSharper_MoveDown NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9876276 AM devenv.exe 7096 RegOpenKey HKCR\ReSharper.ReSharper_MoveDown NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9912375 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\CLSID\{00020424-0000-0000-C000-000000000046}\TreatAs NAME NOT FOUND Desired Access: Query Value 8:45:46.9912529 AM devenv.exe 7096 RegOpenKey HKCR\CLSID\{00020424-0000-0000-C000-000000000046}\TreatAs NAME NOT FOUND Desired Access: Query Value 8:45:46.9914799 AM devenv.exe 7096 RegOpenKey HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-2966119792-2635991036-4117835597-414090\Installer\Features\7F9CD27BF7173A842A185F81E7100860 NAME NOT FOUND Desired Access: Read 8:45:46.9915751 AM devenv.exe 7096 RegOpenKey HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-2966119792-2635991036-4117835597-414090\Installer\Features\7F9CD27BF7173A842A185F81E7100860 NAME NOT FOUND Desired Access: Read 8:45:46.9916485 AM devenv.exe 7096 RegEnumValue HKCU\Software\Microsoft\Installer\Features\7F9CD27BF7173A842A185F81E7100860 NO MORE ENTRIES Index: 1, Length: 220 8:45:46.9916921 AM devenv.exe 7096 RegQueryValue HKCU\Software\Microsoft\Windows\CurrentVersion\Group Policy\AppMgmt\{B72DC9F7-717F-48A3-A281-F5187E018006} NAME NOT FOUND Length: 144 8:45:46.9917220 AM devenv.exe 7096 RegOpenKey HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-2966119792-2635991036-4117835597-414090\Installer\Features\7F9CD27BF7173A842A185F81E7100860 NAME NOT FOUND Desired Access: Read 8:45:46.9918086 AM devenv.exe 7096 RegOpenKey HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-2966119792-2635991036-4117835597-414090\Installer\Features\7F9CD27BF7173A842A185F81E7100860 NAME NOT FOUND Desired Access: Read 8:45:46.9918661 AM devenv.exe 7096 RegEnumValue HKCU\Software\Microsoft\Installer\Features\7F9CD27BF7173A842A185F81E7100860 NO MORE ENTRIES Index: 1, Length: 220 8:45:46.9919019 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\CLSID\{00020424-0000-0000-C000-000000000046}\LocalServer32 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9919204 AM devenv.exe 7096 RegOpenKey HKCR\CLSID\{00020424-0000-0000-C000-000000000046}\LocalServer32 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9919447 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\CLSID\{00020424-0000-0000-C000-000000000046}\InprocHandler32 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9919595 AM devenv.exe 7096 RegOpenKey HKCR\CLSID\{00020424-0000-0000-C000-000000000046}\InprocHandler32 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9919825 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\CLSID\{00020424-0000-0000-C000-000000000046}\InprocHandlerX86 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9919969 AM devenv.exe 7096 RegOpenKey HKCR\CLSID\{00020424-0000-0000-C000-000000000046}\InprocHandlerX86 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9920191 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\CLSID\{00020424-0000-0000-C000-000000000046}\LocalServer32 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9920322 AM devenv.exe 7096 RegOpenKey HKCR\CLSID\{00020424-0000-0000-C000-000000000046}\LocalServer32 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9920543 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\CLSID\{00020424-0000-0000-C000-000000000046}\LocalServer NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9920677 AM devenv.exe 7096 RegOpenKey HKCR\CLSID\{00020424-0000-0000-C000-000000000046}\LocalServer NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9921310 AM devenv.exe 7096 RegQueryValue HKCU\Software\Classes\CLSID\{00020424-0000-0000-C000-000000000046}\AppID NAME NOT FOUND Length: 144 8:45:46.9921387 AM devenv.exe 7096 RegQueryValue HKCR\CLSID\{00020424-0000-0000-C000-000000000046}\AppID NAME NOT FOUND Length: 144 8:45:46.9921910 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\Interface\{A6FAF38C-284B-48B3-B871-84B9A66010E9}\ProxyStubClsid32 NAME NOT FOUND Desired Access: Query Value 8:45:46.9922398 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\Interface\{A6FAF38C-284B-48B3-B871-84B9A66010E9}\ProxyStubClsid32 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9922774 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\Interface\{A6FAF38C-284B-48B3-B871-84B9A66010E9}\ProxyStubClsid32 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9923306 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\Interface\{A6FAF38C-284B-48B3-B871-84B9A66010E9}\Forward NAME NOT FOUND Desired Access: Query Value 8:45:46.9923447 AM devenv.exe 7096 RegOpenKey HKCR\Interface\{A6FAF38C-284B-48B3-B871-84B9A66010E9}\Forward NAME NOT FOUND Desired Access: Query Value 8:45:46.9923676 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\Interface\{A6FAF38C-284B-48B3-B871-84B9A66010E9}\TypeLib NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9924159 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\Interface\{A6FAF38C-284B-48B3-B871-84B9A66010E9}\TypeLib NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9924549 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\Interface\{A6FAF38C-284B-48B3-B871-84B9A66010E9}\TypeLib NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9924925 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\Interface\{A6FAF38C-284B-48B3-B871-84B9A66010E9}\TypeLib NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9925301 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\Interface\{A6FAF38C-284B-48B3-B871-84B9A66010E9}\TypeLib NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9925761 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\TypeLib\{95FF4B0C-E6EC-470C-82AC-EB0471714C5A} NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9926243 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\TypeLib\{95FF4B0C-E6EC-470C-82AC-EB0471714C5A} NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9926490 AM devenv.exe 7096 RegEnumKey HKCR\TypeLib\{95FF4B0C-E6EC-470C-82AC-EB0471714C5A} NO MORE ENTRIES Index: 1, Length: 288 8:45:46.9926676 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\TypeLib\{95FF4B0C-E6EC-470C-82AC-EB0471714C5A}\1.0 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9927153 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\TypeLib\{95FF4B0C-E6EC-470C-82AC-EB0471714C5A}\1.0 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9927525 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\TypeLib\{95FF4B0C-E6EC-470C-82AC-EB0471714C5A}\1.0\0 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9928018 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\TypeLib\{95FF4B0C-E6EC-470C-82AC-EB0471714C5A}\1.0\0\win32 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9928530 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\TypeLib\{95FF4B0C-E6EC-470C-82AC-EB0471714C5A}\1.0\0\win32 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9928710 AM devenv.exe 7096 RegQueryValue HKCR\TypeLib\{95FF4B0C-E6EC-470C-82AC-EB0471714C5A}\1.0\0\win32\(Default) BUFFER OVERFLOW Length: 144 8:45:46.9928986 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\TypeLib\{95FF4B0C-E6EC-470C-82AC-EB0471714C5A}\1.0\0\win32 NAME NOT FOUND Desired Access: Maximum Allowed 8:45:46.9929159 AM devenv.exe 7096 RegQueryValue HKCR\TypeLib\{95FF4B0C-E6EC-470C-82AC-EB0471714C5A}\1.0\0\win32\(Default) BUFFER OVERFLOW Length: 144 8:45:46.9936201 AM devenv.exe 7096 ReadFile C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Offset: 224, Length: 4 8:45:46.9936267 AM devenv.exe 7096 FASTIO_CHECK_IF_POSSIBLE C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Operation: Read, Offset: 224, Length: 4 8:45:46.9938304 AM devenv.exe 7096 ReadFile C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Offset: 228, Length: 20 8:45:46.9938360 AM devenv.exe 7096 FASTIO_CHECK_IF_POSSIBLE C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Operation: Read, Offset: 228, Length: 20 8:45:46.9939826 AM devenv.exe 7096 ReadFile C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Offset: 472, Length: 40 8:45:46.9939877 AM devenv.exe 7096 FASTIO_CHECK_IF_POSSIBLE C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Operation: Read, Offset: 472, Length: 40 8:45:46.9941335 AM devenv.exe 7096 ReadFile C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Offset: 512, Length: 40 8:45:46.9941384 AM devenv.exe 7096 FASTIO_CHECK_IF_POSSIBLE C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Operation: Read, Offset: 512, Length: 40 8:45:46.9943155 AM devenv.exe 7096 ReadFile C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Offset: 552, Length: 40 8:45:46.9943207 AM devenv.exe 7096 FASTIO_CHECK_IF_POSSIBLE C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Operation: Read, Offset: 552, Length: 40 8:45:46.9944710 AM devenv.exe 7096 ReadFile C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Offset: 3,072, Length: 16 8:45:46.9944762 AM devenv.exe 7096 FASTIO_CHECK_IF_POSSIBLE C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Operation: Read, Offset: 3,072, Length: 16 8:45:46.9947328 AM devenv.exe 7096 ReadFile C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Offset: 3,088, Length: 8 8:45:46.9947380 AM devenv.exe 7096 FASTIO_CHECK_IF_POSSIBLE C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Operation: Read, Offset: 3,088, Length: 8 8:45:46.9948846 AM devenv.exe 7096 ReadFile C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Offset: 3,232, Length: 2 8:45:46.9948895 AM devenv.exe 7096 FASTIO_CHECK_IF_POSSIBLE C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Operation: Read, Offset: 3,232, Length: 2 8:45:46.9954480 AM devenv.exe 7096 ReadFile C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Offset: 3,234, Length: 14 8:45:46.9954536 AM devenv.exe 7096 FASTIO_CHECK_IF_POSSIBLE C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Operation: Read, Offset: 3,234, Length: 14 8:45:46.9956052 AM devenv.exe 7096 ReadFile C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Offset: 3,104, Length: 16 8:45:46.9956103 AM devenv.exe 7096 FASTIO_CHECK_IF_POSSIBLE C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Operation: Read, Offset: 3,104, Length: 16 8:45:46.9957616 AM devenv.exe 7096 ReadFile C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Offset: 3,120, Length: 8 8:45:46.9957666 AM devenv.exe 7096 FASTIO_CHECK_IF_POSSIBLE C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Operation: Read, Offset: 3,120, Length: 8 8:45:46.9959108 AM devenv.exe 7096 ReadFile C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Offset: 3,152, Length: 16 8:45:46.9959158 AM devenv.exe 7096 FASTIO_CHECK_IF_POSSIBLE C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Operation: Read, Offset: 3,152, Length: 16 8:45:46.9961043 AM devenv.exe 7096 ReadFile C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Offset: 3,168, Length: 8 8:45:46.9961095 AM devenv.exe 7096 FASTIO_CHECK_IF_POSSIBLE C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Operation: Read, Offset: 3,168, Length: 8 8:45:46.9962559 AM devenv.exe 7096 ReadFile C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Offset: 3,200, Length: 16 8:45:46.9962612 AM devenv.exe 7096 FASTIO_CHECK_IF_POSSIBLE C:\Program Files\Common Files\Microsoft Shared\MSENV\vsprojhostproc.olb FAST IO DISALLOWED Operation: Read, Offset: 3,200, Length: 16 8:45:47.0162060 AM devenv.exe 7096 RegOpenKey HKCU\Software\Classes\CLSID\{00020424-0000-0000-C000-000000000046}\TreatAs NAME NOT FOUND Desired Access: Query Value 

Thank you for your help.

0
source share

I'm not 100% sure that this is the same problem, but my VC ++ behaves in a similar way during debugging. This happened in most cases when you broke into a broken program, so again I’m not sure that this is the same problem, but it may be worth a try.

Reason: A debugged process dies when there are locks obtained by mutexes that the Text Services Framework uses to render text. When other applications try to render any text, they end up being locked until the debugged process completes.

Correction: Disable advanced text services by opening the control panel, regional and language settings, languages, details ... advanced, and selecting the "Disable advanced text services" checkbox.

Sorry if this is not related to your problem, but it certainly helped me with a debugger acting and blocking my system.

Additional information: http://www.virtualdub.org/blog/pivot/entry.php?id=118

0
source share

Great, as in my case, then. Could you find out which network resource Visual Studio is trying to get. You can try wireshark for further study. You will see what traffic your computer generates ...

0
source share

All Articles