无法安装WindowsInternetExplorer因为其他程序等待重启解决方法

转载自http://www.bcty365.com/content-74-1034-1.html

无法安装WindowsInternetExplorer因为其他程序等待重启解决方法_第1张图片

解决方法

1.复制以下代码为.BAT文件,双击运行即可解决

 
复制代码 代码如下:

rem fix update garbage value     
set Update=HKLM\SOFTWARE\MicroSoft\Update  
set Updates=HKLM\SOFTWARE\MicroSoft\Updates  
rem set AutoUpdate=“HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\AutoUpdate”     
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!     
explorer.exe open=http://www.czj.name  
echo press any key to exit…  
pause>nul 
解决方法
2.点击以下链接,双击运行

http://pan.baidu.com/s/1mnpbE

@echo off
rem fix update garbage value


set Update=HKLM\SOFTWARE\MicroSoft\Update
set Updates=HKLM\SOFTWARE\MicroSoft\Updates
rem set AutoUpdate="HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\AutoUpdate"


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!

explorer.exe open=http://www.czj.name
echo press any key to exit...
pause>nul


你可能感兴趣的:(无法安装WindowsInternetExplorer因为其他程序等待重启解决方法)