Страница 1 из 1

Включение GUI на Windows Server Core 2012

СообщениеДобавлено: 18 фев 2013, 13:28
TheRain
Включение GUI на Windows Server Core 2012 (или если по незнанке грохнул компоненты интерфейса)
1. Включение PowerShell на ServerCore
Код: Выделить всё
dism.exe /online /enable-feature /featurename:MicrosoftWindowsPowerShellRoot
dism.exe /online /enable-feature /featurename:MicrosoftWindowsPowerShell

Возможно между первой и второй командой понадобится включить NetFx4:
Код: Выделить всё
dism.exe /online /enable-feature /featurename:NetFx4ServerFeatures
dism.exe /online /enable-feature /featurename:NetFx4

2. Перезагрузка сервера.
3. Включение компонентов GUI:
Код: Выделить всё
c:\users\Administrator>powershell.exe
PS c:\users\Administrator>Install-WindowsFeature Server-Gui-Shell, Server-Gui-Mgmt-Infra
shutdown -r -t 0

Re: Включение GUI на Windows Server Core 2012

СообщениеДобавлено: 11 мар 2014, 14:43
TheRain
Если установка падает с ошибкой 800f0906:
Код: Выделить всё
c:
cd\
Mkdir c:\mount
dism.exe /mount-image /imageFile:d:\sources\install.wim /index:4 /mountdir:c:\mount /readonly       <d: - путь к dvd или виртуальному приводу>
powershell
Install-WindowsFeature Server-Gui-Shell, Server-Gui-Mgmt-Infra -source:c:\Mount\Windows
Dism.exe /unmount-Wim /mountdir:c:\mount
shutdown -r -t 0