Отключение GUI
1 2 3 4 |
Используем менеджер «Manage» -> «Remove Roles or Features» -> NEXT снять галочку с чек-бокса «User Interfaces and Infrastructure» Потребуется перезагрузка |
Включение GUI
1 2 |
cmd -> SConfig Restore Grafic User Interface (GUI) |
Отключение GUI с помощью PowerShell
1 2 3 4 |
Remove-WindowsFeature Server-Gui-Shell, Server-Gui-Mgmt-Infra или Uninstall-WindowsFeature Server-Gui-Shell, Server-Gui-Mgmt-Infra Shutdown –r -t 0 |
Включение GUI с помощью PowerShell
1 2 3 4 |
Add-WindowsFeature Server-Gui-Shell, Server-Gui-Mgmt-Infra или Install-WindowsFeature Server-Gui-Shell, Server-Gui-Mgmt-Infra Shutdown –r -t 0 |