如何真正卸载IE浏览器

如何卸载IE浏览器

CreateTime--2018年5月28日15:15:19

Author:Marydon

在MSDN博客中,微软员工描述了通过命令行卸载IE9、IE10和IE11的教程。

前提:为了进行下面的操作,你必须登陆管理员账户或者拥有管理员权限。

操作:单击开始按钮,在搜索框里输入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

注意: 一旦执行完命令,必须重启电脑。

 相关推荐:

猜你喜欢

转载自www.cnblogs.com/Marydon20170307/p/9100340.html