Puede que lo utilicemos en próximas topologias y es conveniente saberlo.
Mediante la version gráfica:
Nos vamos a características
Hay que saber que la primera opción marcada es la minishell y la última es la Core.
Mediante DISM:
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
- DISM /Online /disable-feature /featurename:Server-Gui-Mgmt /featurename:
- De MinShell a Server Core:
- DISM /Online /disable-feature /featurename:
Server-Gui-Mgmt-Infra
- DISM /Online /disable-feature /featurename:
- 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
- DISM /Online /enable-feature:
- De Server Core a Server con GUI:
- DISM /Online /enable-feature:
Server-Gui-Mgmt-Infra /enable-feature:Server-Gui-Mgmt
- DISM /Online /enable-feature:
Mediante PowerShell:
- 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
- Uninstall-WindowsFeature Server-Gui-Mgmt,,
- 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
- Install-WindowsFeature
- De Server Core a Server con GUI:
- Install-WindowsFeature
Server-Gui-Mgmt-Infra,Server-Gui-Mgmt –Restart
- Install-WindowsFeature
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.