1、首先进入打开这个 C:WindowsTEMP 文件夹,将里面的所有文件都清空了。
2、依次点击“开始”—“所有程序”—“附件”,右键点击“命令行提示符”,选择“以管理员身份运行”。
3、在出现的命令行提示符中复制并输入下面的代码,按下Enter
FORFILES /P %WINDIR%servicingPackages /M Microsoft-Windows-InternetExplorer-*11.*.mum /c "cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /norestart"
4、然后会开始卸载,并会出现几个错误信息,我们不用理会,按下确定。
5、最后命令运行停止以后重启电脑,系统会还原我们在安装IE11之前的IE版本。 还原以后,现在我们就可以下载IE11离线安装包进行安装。安装时,请暂时关闭或卸载三方防护类或反间谍软件,提供一个无干扰的环境,保证IE11可以正常完成安装
IE11卸载命令如下:
FORFILES /P %WINDIR%servicingPackages /M Microsoft-Windows-InternetExplorer-*11.*.mum /c "cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /quiet /norestart
IE10卸载命令如下:
FORFILES /P %WINDIR%servicingPackages /M Microsoft-Windows-InternetExplorer-*10.*.mum /c "cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /quiet /norestart
IE9卸载命令如下:
FORFILES /P %WINDIR%servicingPackages /M Microsoft-Windows-InternetExplorer-*9.*.mum /c "cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /quiet /norestart