无法安装 Windows Internet Explorer

安装IE8发现安装过程出错:


无法安装 Windows Internet Explorer
 在网上找到一个解决的方法,可以完美的安装IE8.

首先打开一个文本编辑器(摘自:http://blog.sina.com.cn/s/blog_4c59c08a0100cg29.html ):

写道
@echo off
rem fix update garbage value

set Update=HKLM\SOFTWARE\MicroSoft\Update
set Updates=HKLM\SOFTWARE\MicroSoft\Updates
rem set

echo Cleanning "%Update%"
for /f "tokens=1 delims=" %%a in ('reg query %Update%^|Findstr /i "UpdateExeVolatile"') do (
reg delete %%a /f
)
echo %Update% is cleanned!


echo Cleanning "%Updates%"
for /f "tokens=1 delims=" %%a in ('reg query %Updates%^|Findstr /i "UpdateExeVolatile"') do (
reg delete %%a /f
)
echo %Updates% is cleanned!

echo press any key to exit...
pause>nul

 拷贝以上内容,然后选在保存为,名字可以自行定义比如:updateIE.bat,记住保存类型为 所有文件(可下载附件)。之后双击执行updateIE.bat,当提示“press any key to exit... ”时,按任意键退出。最后再安装IE8就没有问题了。