Diferentes modalidades de nuestro #Windows2012 ….Server #Core, #Minshell y Server gráfico

por | 4 mayo, 2015

Puede que lo utilicemos en próximas topologias y es conveniente saberlo.

Mediante la version gráfica:

Nos vamos a características

Captura

Hay que saber que la primera opción marcada es la minishell y la última es la Core.

Mediante DISM:

CapturaMiniShell

Teniendo en cuenta que:

  • Graphical Management Tools and Infrastructure –->Server-Gui-Mgmt-Infra
  • Server Graphical Shell –> Server-Gui-Mgmt

Tenemos:

  • De Server con GUI a MinShell:
    • DISM /Online /disable-feature /featurename:Server-Gui-Mgmt
  • De Server con GUi a Server Core:
    • DISM /Online /disable-feature /featurename:Server-Gui-Mgmt /featurename:Server-Gui-Mgmt-Infra
  • De MinShell a Server Core:
    • DISM /Online /disable-feature /featurename:Server-Gui-Mgmt-Infra
  • De MinShell a Server con GUI:
    • DISM /Online /enable-feature:Server-Gui-Mgmt
  • De Server Core a MinShell:
    • DISM /Online /enable-feature:Server-Gui-Mgmt-Infra
  • De Server Core a Server con GUI:
    • DISM /Online /enable-feature:Server-Gui-Mgmt-Infra /enable-feature:Server-Gui-Mgmt

Mediante PowerShell:

CapturaCore

  • De Server con GUI a MinShell:
    • Uninstall-WindowsFeature Server-Gui-Mgmt –Restart
  • De Server con GUi a Server Core:
    • Uninstall-WindowsFeature Server-Gui-Mgmt,,Gui-Mgmt-Infra –Restart
  • De MinShell a Server Core:
    • Uninstall-WindowsFeature Server-Gui-Mgmt-Infra –Restart
  • De MinShell a Server con GUI:
    • Install-WindowsFeature Server-Gui-Mgmt –Restart
  • De Server Core a MinShell:
    • Install-WindowsFeature Server-Gui-Mgmt-Infra –Restart
  • De Server Core a Server con GUI:
    • Install-WindowsFeature Server-Gui-Mgmt-Infra,Server-Gui-Mgmt –Restart

Yo por ejemplo en los laboratorios que hago el DC lo instalo en forma gráfica pero despues le paso a Core.

Espero que os sea de utilidad.

Deja una respuesta