快速卸载ie9 ie10 ie11的方法

来源:互联网 发布:windows arp攻击 编辑:程序博客网 时间:2024/05/02 04:53

 单击开始按钮,在搜索框里输入cmd,进入命令提示框,将下面的命令复制粘贴到命令框里,然后按下Enter键执行。

  以下是执行卸载IE9的命令行:

  FORFILES /P %WINDIR%\servicing\Packages /M Microsoft-Windows-InternetExplorer-*9.*.mum /c "cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /quiet /norestart

  以下是执行卸载IE10的命令行:

  FORFILES /P %WINDIR%\servicing\Packages /M Microsoft-Windows-InternetExplorer-*10.*.mum /c "cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /quiet /norestart

  以下是执行卸载IE11的命令行:

  FORFILES /P %WINDIR%\servicing\Packages /M Microsoft-Windows-InternetExplorer-*11.*.mum /c "cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /quiet /norestart

  这样就可以有效的在系统里卸载清除ie9、ie10、ie11了。

0 0