Converting from Server 2012 Core install to Full GUI

Windows Server 2012 Core boasts many enticing enhancements which include reducing the installation footprint, attack surface and management overhead.  Features on Demand allows the administrator to remove roles which are not needed to help reduce the disk size required for the installation.  By default all features are stored in the %windir%\winsxs directory, but administrators can use the uninstall-windowsfeature <featurename> –remove command to delete the files associated with that feature from the winsxs directory.

If you install Server Core edition or have removed the Server-Gui-Shell feature from Windows Server 2012 and want to convert to full GUI, you have some additional tasks that you will need to perform.  I attempted to just execute the widely published PowerShell command to convert to full GUI and received the following message.

The installation froze for some time at this stage before showing the error message.

image

image

Error Message:

Install-WindowsFeature : The request to add or remove features on the specified server failed.

Installation of one or more roles, role services, or features failed.  The source files could not be downloaded. 

Use the source option to specify the location of the files that are required to restore the feature.

Error: 0x800F0906

The error message says it cannot find the source files to perform the installation.

I was building a new lab environment and didn’t have the ability to stage the installation files on the network, but that is an option.  My environment was inside a Hyper-V environment on my Windows 8 system, so I needed to pull the files from the disk.  As you know the installation files are located inside the /sources/install.wim file.  To get the Full GUI running, I performed the following steps:

  1. Mount the Windows Server 2012 ISO to the host.
  2. open an administrative command prompt
  3. mkdir c:\mount
  4. check your wimfile to determine the correct index for the OS (mine was 4) -the command is dism /get-imageinfo /ImageFile:d:\sources\install.wim
  5. ‘dism /mount-wim /wimfile:d:\sources\install.wim /index:4 /mountdir:c:\mount /readonly
  6. powershell (enter PowerShell prompt)
  7. install-windowsfeature server-gui-mgmt-infra,server-gui-shell –restart –source c:\mount\windows\winsxs
  8. Unmount Wim (dism /unmount-wim /mountdir:c:\mount)
  9. Remove Mount Directory (rmdir c:\mount)

 

The seventh command will finish the installation and restart the server when complete.  When the Install-WindowsFeature PowerShell command is executed and the server has internet access, the required files can be downloaded from Windows Update.   Some of these features are very large, so specifying a network location or mounting the installation WIM, using the procedure above, may be the best alternative for installing removed features.