原因分析:

因为自己在卸载IIS的时候,不小心卸载了.net framework,系统没有了图形界面(由完整模式Full变为了核心模式core),需要重新恢复.net framework4.5。

解决方法分析:

需要将核心模式core 变回完整模式 Full,用dism命令。

具体操作:

dism  /online  /enable-feature  /all  /featurename:servercore-fullserver  /featurename:server-gui-shell  /featurename:server-gui-mgmt

PS:每个“/”前有空格,否则会报错;接下来就是等待,当提示是否重启电脑(Y/N)时只需重启就ok啦。

相关文章:

  • 2021-11-16
  • 2021-11-19
  • 2021-09-27
  • 2021-10-21
  • 2021-09-28
  • 2021-11-15
  • 2021-10-18
  • 2021-07-11
猜你喜欢
  • 2022-02-10
  • 2021-07-02
  • 2022-12-23
  • 2022-12-23
  • 2021-08-01
  • 2021-08-17
  • 2021-06-30
相关资源
相似解决方案