Using PowerShell to convert to the Full Graphical Shell on a Windows Server 2012 R2 Datacenter Core Edition
Using PowerShell to convert to the Full Graphical Shell on a Windows Server 2012 R2 Datacenter Core Edition
You initially installed Windows Server 2012 R2 Datacenter Core Edition now you want to convert the installation to include the Full Graphical Shell to take care of some administrative tasks. Once the Full Graphical Shell has been installed you will have access to entire Server 2012 R2 desktop.
In this post, I will show you the steps to convert to the Full Graphical Shell.
Use the Deployment Image Servicing and Management (DISM.EXE) to determine the index number of the desired operating system in the install.wim file.
- Open an Administrative Command Prompt.
- Type dism /get-imageinfo /imagefile:d:\sources\install.wim
Note: d: is the drive letter of the DVD drive.
- In our case Windows Server 2012 R2 Datacenter is Index : 4
Use the Deployment Image Servicing and Management (DISM.EXE) to mount the desired operating system files from the install.wim file.
Note: If you previously had the graphical interface installed on this server you will not have to mount the installation files.
If your computer has internet access, PowerShell can retrieve the source files from Windows Update.
- Make a folder on the root of the C: drive to mount the installation files. Type mkdir C:\mount, type dir to ensure folder was created.
- Type dism /mount-wim /wimfile:d:\sources\install.wim /index:4 /mountdir:c:\mount /readonly. Observe the progress as the image is mounted.
- Verify the operation completed successfully.
Use the PowerShell to convert to the Full Graphical Shell using local source files.
- Launch PowerShell, type powershell in the command prompt.
Note: The prompt turned to PS.
- To determine the proper syntax for the features you want to install, type get-windowsfeature then enter.
Note: The features we want to install is Graphical Management Tools and Infrastructure (Server-Gui-Mgmt-Infra) and Server Graphical Shell (Server-Gui-Shell).
- Type Install-windowsfeature Server-Gui-Mgmt-Infra,Server-Gui-Shell –source c:\mount\windows\winsxs –restart
This process will take some time to complete, be patient it will finish.
Use the PowerShell to convert to the Full Graphical Shell using Windows Updates.
- Launch PowerShell, type powershell in the command prompt.
Note: The prompt turned to PS.
- To determine the proper syntax for the features you want to install, type get-windowsfeature then enter.
Note: The feature we want to install is Graphical Management Tools and Infrastructure (Server-Gui-Mgmt-Infra) and Server Graphical Shell (Server-Gui-Shell).
- Type Install-Windowsfeature Server-Gui-Mgmt-Infra,Server-Gui-Shell –restart
This process will take some time to complete, be patient it will finish.
This process will take some time to complete and may restart multiple times.
Verify the Full Graphical Shell is installed.
- Once the computer restarts and you have logged on, you will access to the Full Windows Server 2012 R2 Desktop.
Check back later for more blogs relating to:
- Using Deployment Image Servicing and Management (DISM.EXE) to convert to the MiniShell on a Windows Server 2012 R2 Datacenter Core Edition from installation media.
- Using Deployment Image Servicing and Management (DISM.EXE) tool to convert to the Full Graphical Shell on a Windows Server 2012 R2 Datacenter Core Edition from installation media.
- Using PowerShell to convert to the MiniShell on a Windows Server 2012 R2 Datacenter Core Edition.
- Using Server Manager to uninstall the MiniShell or Full Graphical Shell to convert Windows Server 2012 R2 Datacenter to a Core Edition.
- Using PowerShell to uninstall the MiniShell or Full Graphical Shell to convert Windows Server 2012 R2 Datacenter to a Core Edition.
Until next time – Ride Safe!
Rick Trader
Windows Server Instructor – Interface Technical Training
Phoenix, AZ
You May Also Like
Windows 10 Features and Navigation – December 1, 2015
0 122 1In this recorded Windows 10 webinar from December 1,2015, Windows Instructor Steve Fullmer presents the navigation and some of the new features associated with Windows 10 including Sysinternals Tools for Windows Client, Windows core concepts, exploring Process Explorer as well as some of the features that are not yet ready for prime time but will … Continue reading Windows 10 Features and Navigation – December 1, 2015
Windows 10 Basic Desktop and Navigation
0 870 1This post is from our recent three-part Windows 10 webinar series. You can watch the video replay of the entire Windows 10 webinars at the following links. Windows 10 Features and Navigation Windows instructor Steve Fullmer introduces the navigation and some of the new features associated with Windows 10 including Sysinternals Tools for Windows Client … Continue reading Windows 10 Basic Desktop and Navigation
How to clone a Windows Server 2012 or 2012 R2 Domain Controller
3 1604 3One of the coolest new features in Window Server 2012 and Windows Server 2012 R2 is the ability to clone a Domain Controller. In the past, if we had virtualized Domain Controllers and we actually took a snapshot of it and then rolled back to that snapshot, it would break the logon service on that … Continue reading How to clone a Windows Server 2012 or 2012 R2 Domain Controller
Pingback: Using Server Manager to uninstall the MiniShell or Full Graphical Shell
Pingback: Using PowerShell to remove the MiniShell to convert Server 2012 R2 Datacenter to a Core Edition
Pingback: Using PowerShell to convert to MiniShell in Server 2012 R2
Pingback: Using DISM to convert to MiniShell in Windows Server 2012 R2
Pingback: Using DISM tool to convert to the Full Graphical Shell in Server 2012 R2 Datacenter