References:
https://4sysops.com/archives/switch-windows-server-2012-gui-layers-with-powershell/
Scenarios: install GUI on windows 2012 R2 Server Core using ISO.
- Prepare a server core system.
- 在虚拟机中安装完系统后,在输入密码的时候,如果要输入数字,那个numlock灯要关掉。这个问题可以这样解决,进到bios设置中(Power On to Firmware),然后去到Keyboard Features将numlock设置成on,同时你键盘上的numlock灯要亮着。然后保存退出,系统启动后,再输密码就正常了。
- 安装vmware tools。在工具栏的VM下,点击install vmware tools。因为我将系统安装在一个盘中,所以光盘应该在D盘中。你也可以通过wmic logicaldisk get size, caption这条命令来看你有几个盘,和盘符的大小,从而判断哪个是CD盘。
以下每一行为一个命令:
d:
dir
setup.exe
然后就等vmware tools安装界面跳出,安装好。
4. 可以对命令行框进行修改。点击左上角,选择Properties,可以对窗口进行大小,字体,颜色的调整。
5. 做一个snapshot。
6.将系统光盘放入虚拟机中,需要mount该光盘到系统中,不然dism命令读不到D盘的数据。
以下每一行为一个命令:
- mkdir c:\mount
dism /get-imageinfo /imagefile:d:\sources\install.wim
(这句命令的意思是查看你的iso镜像的index跟系统类型的关系(此处实验系统为1)。Check your wimfile to determine the correct index for the OS(mine is 1))
- dism /mount-wim /wimfile:d:\sources\install.wim /index:1 /mountdir:c:\mount /readonly
这里如果卡在95%很久,那就敲一下回车。
- powershell
(enter PowerShell prompt)
- Install-windowsfeature server-gui-mgmt-infra,server-gui-shell –restart –source c:\mount\windows\winsxs
(pay attention to the blank space before –start, -source and c:\...)
68%这里会卡很久,请耐心等待,应该在1小时以内。
未完待续……
https://gallery.technet.microsoft.com/scriptcenter/Switch-between-Windows-9680265d