原因分析:
因为自己在卸载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啦。
重启
参考文档
https://jingyan.baidu.com/article/ff42efa9fb6f16c19e2202dc.html