Server 2012 -From Core to GUI

OK, so I’ll admit.. I found this one out by accident. While working on a Windows 2012 Server, the GUI features were removed and brought it back to a Core installation. As much as I like using command line (and PS), it threw me off!

So, to Bring back  the nice-n-pretty Graphical User Interface for Server 2012, the Deployment Image Servicing and Management tool (DISM) was needed! -Keep in mind, all I had was the Command Prompt (NO PowerShell).

From the Command line:

  • Dism /online /enable-feature /featurename:Server-Gui-Mgmt /all
  • Dism /online /enable-feature /featurename:Server-Gui-Shell /all
  • Dism /online /enable-feature /featurename:ServerCore-FullServer /all
  • Dism /online /enable-feature /featurename:Server-Gui-Shell /featurename:ServerCore-FullServer /all
  • Dism /online /enable-feature /featurename:Server-Gui-Mgmt /featurename:Server-Gui-Shell /featurename:ServerCore-FullServer /all

Reboot and “Viola! It’s back!”

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s