IE6 Stops Responding in Windows XP with SP2 or SP3 Due To urlmon.dll
Internet Explorer 6 (IE6) in Windows XP Service Pack 2 (SP2) or Service Pack 3 (SP3) may stops responding and crashing when users try to a visit a Web site. The IE6 not responding problem also affects shell browsers based on IE engine such as GreenBrowser and TheWorld. In these cases, all IE windows and tabs will be not responding, closing and exit with the following error message.
Internet Explorer has encountered a problem and needs to close. We are sorry for the inconvenience.
If you were in the middle of something, the information you were working on might be lost.
Please tell Microsoft about this problem.We have created an error report that you can send to help us improve Internet Explorer. We will treat this report as confidential and anonymous.
To see what data this error report contains, click here.
If user clicks on the error report link, there following error-signature information will be shown.
AppName: iexplore.exe
AppVer: 6.0.2900.2180
ModName: urlmon.dll
ModVer: 6.0.2900.3231
Offset: 0003b5ce
The issue is caused by security update 942615 (MS07-069) which was released in December 2007, which probably rolled out KB942367, which also requires users to manually create and enable the Iexplore.exe registry entry. The problem has been identified by Microsoft, and KB946627 hotfix or patch have been made available to address and fix the error by creating the required registry key.
Download and install the WindowsXP-KB946627-x86-ENU.exe, or use the following alternative manual steps or run registry key file to add the registry key.
- Click Start, click Run, type regedit, and then click OK.
- Locate and then click the following registry subkey:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\
- On the Edit menu, point to New, and then click Key.
- Type FEATURE_PROTECT_DECOMPRESSION_FILTER_FROM_ABORT_KB942367, and then press ENTER.
- Right-click FEATURE_PROTECT_DECOMPRESSION_FILTER_FROM_ABORT_KB942367, point to New, and then click DWORD Value.
- Type an asterisk symbol (*), and then press ENTER.
Note The asterisk symbol (*) represents any process name that uses Urlmon.dll. If you want to make this change for an individual application that uses Urlmon.dll, you can use the name of that application instead of the asterisk symbol (*). For example, you can use Appname.exe.
- Right-click the asterisk symbol (*), and then click Modify.
- In the Value data box, type 1, and then click OK.
- Exit Registry Editor.
An easier workaround is to simply download and execute the iekb942367.reg file to insert the missing registry value.
Related Articles
- Fix Windows 7 Screen Flashes to Desktop with Not Responding Error
- Download Responding Heads v3.5 to Execute Windows Applications Through Voice Activation
- Force Close Stopped Responding Programs & Frozen Processes
- IBM Server Stops or Hangs with 0581 on LCD Display
- How to Uninstall Windows Internet Explorer 8 (IE8) in Vista
- Fix MSI Installer or Windows Update Causing Explorer Stopped Working and Restart in Windows 7
- How To Generate Windows Vista System Health Report
- Unable to Login to Windows Live (MSN) Messenger with 80048820 Extended 80048416 Error Code
- Fast Shutdown Faster Windows 2000, Windows XP, Windows 2003 and Windows Vista
- Unable to Sign In to Microsoft Money 2007 with Windows Live ID in Vista










































February 7th, 2008 17:05
Edit: ITs FEATURE_PROTECT not FEATURE_PROTECT2
Code is:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_PROTECT_DECOMPRESSION_FILTER_FROM_ABORT_KB942367]
@=”"
“*”=dword:00000001
I had FEATURE_PROTECT2 above, that was test to make sure it added to registry right agian.
Sorry about that.
February 7th, 2008 17:00
I was having similiar problem with IE6 after install of SP3. Registry file did not fix it. THe patch wouldn’t install, saying the version installing is older than the one istalled. However i did finally get it to work by modify the reg to say this:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_PROTECT2_DECOMPRESSION_FILTER_FROM_ABORT_KB942367]
@=""
"*"=dword:00000001
For some reason without @=”" which add line (default) unassigned, it would add the * and dword of 1 to the registry. HOpe this helps other people too.