zl程序教程

您现在的位置是:首页 >  其他

当前栏目

【miscellaneous】Winserver2012安装后无法进入桌面

安装 无法 进入 桌面 miscellaneous
2023-09-27 14:20:26 时间

原因分析:

自己操作卸载了.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啦。