码迷,mamicode.com
首页 > Windows程序 > 详细

Switch between Server Core mode and Server GUI mode in Windows Server 2012 R2

时间:2016-02-26 13:50:21      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:

References:

http://blogs.technet.com/b/john_taylor/archive/2013/01/09/converting-from-server-2012-core-install-to-full-gui.aspx

https://4sysops.com/archives/switch-windows-server-2012-gui-layers-with-powershell/

 

Scenarios: install GUI on windows 2012 R2 Server Core using ISO.

  1. Prepare a server core system.
  2. 在虚拟机中安装完系统后,在输入密码的时候,如果要输入数字,那个numlock灯要关掉。这个问题可以这样解决,进到bios设置中(Power On to Firmware),然后去到Keyboard Features将numlock设置成on,同时你键盘上的numlock灯要亮着。然后保存退出,系统启动后,再输密码就正常了。
  3. 安装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

Switch between Server Core mode and Server GUI mode in Windows Server 2012 R2

标签:

原文地址:http://www.cnblogs.com/emmagikyo/p/5219976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!