Windows Server 2012 GUI went missing after removing Active Directory

50,871

Solution 1

Is explorer simply not starting? have you tried typing explorer.exe in the command prompt window? I guess this isn't the case you wouldn't normally get a command prompt when logging in. It sounds like somehow the shell has been removed, effectively giving you a server core install, in which case try issuing the following from the command prompt. This should re-enable the shell if it has been somehow disabled.

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

Solution 2

FYI, when this happened to me, I kept getting an Error 50 when using the command above. I had to add an /all to make it work. Once I did that, it worked just fine.

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

Solution 3

Below worked for me

Dism /online /enable-feature /featurename:Server-Gui-Mgmt /featurename:Server-Gui-Shell /featurename:ServerCore-FullServer /all
Share:
50,871

Related videos on Youtube

mfmz
Author by

mfmz

Updated on September 18, 2022

Comments

  • mfmz
    mfmz over 1 year

    I'm sorry but i'm stuck in figuring out a problem i'm facing here. I removed the AD feature from server manager and after rebooting, my server 2012 gui wasn't there anymore. There's only command prompt to deal with. I tried to enable back gui based on threads i've found. I did SConfig but option no.12 which is to restore gui is not there. I tried running powershell but it stated "powershell is not recognized as internal or external...". I change my path to c:\windows\system32\windowspowershell\v1.0 and tried running powershell just to find the same error message. So how can i enable back the gui feature of my server 2012?

  • mfmz
    mfmz over 11 years
    Yes. explorer.exe doesn't start as well. As far as I'm concerned, i only removed the AD feature without messing around with the shell. After rebooting, the gui went missing and I couldn;t even access the powershell to restore the gui.
  • Kcmamu
    Kcmamu over 11 years
    Okay have you tried running the dism command I suggested? If the shell has been removed (which sounds likely, although I've no idea why), then the dism command should sort it out.
  • Kcmamu
    Kcmamu over 11 years
    Have you managed to resolve it? Your now deleted comment had me stumped.
  • mfmz
    mfmz over 11 years
    Yes I did ! I typed the command wrongly at first. After correcting it, it worked. I deleted my comment because I wrote it gave me an error, which is caused by own typing mistake. Thanks ! Great help !
  • Kcmamu
    Kcmamu over 11 years
    Glad to hear you're up and running again, and you're welcome.
  • Michael Hampton
    Michael Hampton over 11 years
    @user1867016 If the answer resolved your issue, be sure to accept it by clicking the outline of the check mark next to it. This indicates to others that the issue is resolved. Welcome to Server Fault!
  • Anthony Geoghegan
    Anthony Geoghegan over 8 years
    While this code may answer the question, explaining how and/or why it solves the problem would improve the usefulness and long-term value of the answer.
  • Nathan
    Nathan almost 7 years
    Yup. Sometimes when components break, you have to add the parameter /all.