Using Deployment Image Servicing and Management (DISM.EXE) tool to convert to the Full Graphical Shell in Server 2012 R2 Datacenter
Using Deployment Image Servicing and Management (DISM.EXE) tool to convert to the Full Graphical Shell in Server 2012 R2 Datacenter
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 all the features of the Windows Server 2012 R2 Desktop.
In this blog I will show you the steps to add the Full Graphical Shell using Deployment Image Servicing and Management (DISM.EXE) tool to Windows Server 2012 R2 Datacenter Core Edition from installation media.
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.
- 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 Deployment Image Servicing and Management (DISM.EXE) to switch to the Full Graphical Shell.
- Type dism /online /enable-feature /featurename:Server-Gui-Mgmt /featurename:Server-Gui-Shell /featurename:ServerCore-FullServer /source:c:\mount\windows\winsxs /all
Note: The /all switch installs the parent feature required to add the sub-features.
Note: This process will take some time to complete, it will seem that once the computer gets to around 66% it hangs and again after 100%, but be patient it will finish.
- Restart the server by typing Y when the installation is complete.
Note: 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) 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 Deployment Image Servicing and Management (DISM.EXE) tool to convert to the MiniShell on a Windows Server 2012 R2 Datacenter
- Using PowerShell convert to the Full Graphical Shell 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
A Simple Introduction to Cisco CML2
0 3794 0Mark Jacob, Cisco Instructor, presents an introduction to Cisco Modeling Labs 2.0 or CML2.0, an upgrade to Cisco’s VIRL Personal Edition. Mark demonstrates Terminal Emulator access to console, as well as console access from within the CML2.0 product. Hello, I’m Mark Jacob, a Cisco Instructor and Network Instructor at Interface Technical Training. I’ve been using … Continue reading A Simple Introduction to Cisco CML2
How to use the PowerShell Script Analyzer to Clean Up Your Code
0 1235 2In this video, PowerShell instructor Jason Yoder demonstrates how you can use the PowerShell Script Analyzer to help you format your code to best-practices. For instructor-led PowerShell training classes, see our course schedule: Microsoft Windows PowerShell Training Download the PowerShell Analyzer scripts used in this video. <# ╔══════════════════════════════════════════════════════════════════════════════╗ ║ ║ ║ PowerShell Script Analyzer ║ … Continue reading How to use the PowerShell Script Analyzer to Clean Up Your Code
Configuring Windows Mobility Center and How to Turn it On and Off
1 1433 1Video transcription Steve Fullmer: In our Windows training courses, we often share information about the Windows 8.1 Mobility Center. Mobility Center was introduced for mobile and laptop devices in Windows 7. It’s present and somewhat enhanced in Windows 8. Since we don’t have mobile devices in our classrooms, I decided to take a little bit … Continue reading Configuring Windows Mobility Center and How to Turn it On and Off
Pingback: Using Server Manager to uninstall the MiniShell or Full Graphical Shell
Pingback: Using DISM to convert to MiniShell in Windows Server 2012 R2
Pingback: Using PowerShell to convert to MiniShell in Server 2012 R2
Pingback: Using PowerShell to get Graphical Shell on a Server 2012 R2 Datacenter Core Edition.