1、插入系统安装光盘(D:)
2、运行Powershell
3、建立文件夹 mkdir c:\mount
4、查询映像文件中,确定完全安装映像(例如,SERVERDATACENTER,而非SERVERDATACENTERCORE)的服务器的索引编号
dims /get-wiminfo /wimfile:D:\sources\Install.wim
5、加载映像
dism /mount-wim /wimfile:d:\sources\install.wim /index:4 /mountdir:c:\mount /readonly
6、查询所需安装的组件名
Get-WindowsFeature “Server*”
7、查询安装所需的命令名
Get-Command “*Windowsf*”
8、安装组件
ADD-WindowsFeature Server-Gui-Mgmt-Infra,Server-Gui-Shell –Restart –Source c:\mountdir\windows\winsxs
计算机重启完成。
我们完全可以通过Add-WindowsFeature 或install-WindowsFeature 来为Server core 安装GUI图形化界面。1、进入 *** 作系统会进入命令提示符,在此我们输入“Powershell”
2、进入PS模式后,我们输入Get-WindowsFeature –name *GUI* | ft name, installed 来查看Server-Gui-Mgmt-Infra和Server-Gui-Shell 两个功能的安装情况。
3、通过上述查询,我们看到两个功能的安装状态均为False. 表示两个功能未安装。 我们可以通过Add-WindowsFeature Server-Gui-Mgmt-Infra ,Server-Gui-Shell –Restart 或 Install-WindowsFeature Server-Gui-Mgmt-Infra ,Server-Gui-Shell–Restart 来安装。
4、已经开始安装
5、安装完成,重启进入
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)