命令行卸载IE
Posted yongjin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了命令行卸载IE相关的知识,希望对你有一定的参考价值。
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
以上是关于命令行卸载IE的主要内容,如果未能解决你的问题,请参考以下文章
如何在windows命令行安装/卸载apache及mysql的方法