the Server core is converted to a full installation ( GUI)
We are installing Windows Server2012 or Windows Server R2 may inadvertently choose to have the Server Core version installed. The installation is complete and the command operation mode is not very familiar. The operation is inconvenient, affects the work efficiency. To resolve this issue, you may choose to reinstall the operating system to resolve it, but reinstalling the operating system can be laborious. For this we can fully install GUI graphical interface for Server core through add-windowsfeature or install-windowsfeature .
One, for Windows Core Installation graphical interface
Finished installing Server Core enters the operating system into the command prompt, where we enter "Powershell",
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/58/2A/wKiom1SqlOGC4y6OAADDbjyLUdw315.jpg "title=" 1.png " alt= "Wkiom1sqlogc4y6oaaddbjyludw315.jpg"/>
2. After entering PS mode, we enter get-windowsfeature–name *gui* | FT name, installed to view The installation of the Server-gui-mgmt-infra and Server-gui-shell two features.
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M00/58/27/wKioL1SqlbTwPSexAADjMO0VX_k780.jpg "title=" 2.png " alt= "Wkiol1sqlbtwpsexaadjmo0vx_k780.jpg"/>
3. With the above query, we see that the installation status of two features is False. indicates that two features are not installed.
we can pass Add-windowsfeature Server-gui-mgmt-infra, Server-gui-shell–restart
or install-windowsfeature Server-gui-mgmt-infra, Server-gui-shell–restart to install.
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M00/58/2A/wKiom1SqlQnxm13bAAFai0wt8r8732.jpg "title=" 3.png " alt= "Wkiom1sqlqnxm13baafai0wt8r8732.jpg"/>
4. Installation has started,
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M01/58/27/wKioL1SqleiwCVA_AAEkiLj91hA150.jpg "title=" 4.png " alt= "Wkiol1sqleiwcva_aaekilj91ha150.jpg"/>
3. or run install-windowsfeature Server-gui-mgmt-infra,server-gui-shell –Restart,
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/58/27/wKioL1SqlkPgVbXLAADsXZNgjsw342.jpg "title=" 5.png " alt= "Wkiol1sqlkpgvbxlaadsxzngjsw342.jpg"/>
4. Run Run install-windowsfeature to start the installation.
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/58/2A/wKiom1SqlZmCrmw9AAEQZVb98gw768.jpg "title=" 6.png " alt= "Wkiom1sqlzmcrmw9aaeqzvb98gw768.jpg"/>
5. installation is complete, reboot into the system, you can see GUI image interface.
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M00/58/27/wKioL1SqlmrAVZ5nAAGXdgbqWuo720.jpg "title=" 7.png " alt= "Wkiol1sqlmravz5naagxdgbqwuo720.jpg"/>
Second, delete GUI graphical interface converted to Servercore
some compare cattle . X People are familiar with the Server Core command, and do not like to use the graphical interface. We can also do this by removing and uninstalling the user interface and infrastructure in Windows features to convert Windows Full installation to Windows core.
Run Get-windowsfeature–name *gui* to see the installation status of "graphics management tools and infrastructure" and "server graphics Shell" is installed.
Run Uninstall-windowsfeature Server-gui-mgmt-infra,server-gui-shell –Restart or
Run Remove-windowsfeature Server-gui-mgmt-infra,server-gui-shell –Restart ,
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M00/58/2A/wKiom1Sqlf3yGA9OAAJUaFg2Qhk189.jpg "title=" 1.png " alt= "Wkiom1sqlf3yga9oaajuafg2qhk189.jpg"/>
3. Start deleting related features.
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M01/58/27/wKioL1SqlsfR1OczAAJkomSHlxY551.jpg "title=" 2.png " alt= "Wkiol1sqlsfr1oczaajkomshlxy551.jpg"/>
2. by running Uninstall-windowsfeature to remove the relevant functionality.
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/58/2A/wKiom1SqlhuhZainAAIjYoToR4Q400.jpg "title=" 3.png " alt= "Wkiom1sqlhuhzainaaijyotor4q400.jpg"/>
the above is only for non- The Server Core version of the system image, as a result of inadvertent installation of the Server Core version of the situation, if the system is installed directly using the Server Core version of the system image, you need to convert to GUI graphical interface is relatively more complex.
1. Use this cmdlet to determine the index number of the full installation image:Get-windowsimage-imagepath <path to Wim>\install.wim
2. Run install-windowsfeature Server-gui-mgmt-infra, Server-gui-shell –Restart –sourcewim: < D:\sources>\install.wim:<index # from step 1>
3. or use Windows Update instead of a WIM file as the source for the Windows PowerShell cmdlet:
Install-windowsfeature Server-gui-mgmt-infra,server-gui-shell–restart
This article is from the "Zlyux" blog, make sure to keep this source http://zlyux.blog.51cto.com/1654149/1599451
Windows Server Core conversion to full installation (GUI)