今天卸载ie11失败,最后使用下面这个命令实现了卸载,记录下

 

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

 

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

 

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

相关文章:

  • 2021-08-17
  • 2021-08-17
  • 2021-12-21
  • 2021-12-16
  • 2022-01-01
  • 2021-10-24
  • 2021-12-31
猜你喜欢
  • 2021-11-27
  • 2021-11-27
  • 2021-11-17
  • 2021-11-27
  • 2021-12-19
  • 2021-11-04
相关资源
相似解决方案