Win10使用命令卸载IE浏览器教程
具体解决方法:
1、老规矩Win+R跳出运行框,输入【CMD】进入命令提示框,如图所示:
2、将如下命令复制粘贴到命令提示框内,回车运行即可:
a.卸载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
b.卸载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
c.卸载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