O powershell Server 2012 Server Core não está instalado

8

No núcleo do servidor, depois de um reinício, o powershell não foi de repente instalado, o que devo fazer para reinstalá-lo?

Eu ainda não tenho a administração remota configurada, então não posso usá-la novamente para instalá-la.

O 'powershell' não é reconhecido como um comando interno ou externo, um programa operacional ou um arquivo em lotes.

    
por 124597627895789645856485 22.09.2012 / 23:20

2 respostas

8

Use a ferramenta Gerenciamento e Manutenção de Imagens de Implantação (DISM.exe) para habilitar o PowerShell:

dism.exe /online /enable-feature /featurename:MicrosoftWindowsPowerShellRoot

... ou se isso não for suficiente:

dism.exe /online /enable-feature /featurename:MicrosoftWindowsPowerShell /all

    
por 23.09.2012 / 01:25
2
dism.exe /online /enable-feature /featurename:MicrosoftWindowsPowerShellRoot
dism.exe /online /enable-feature /featurename:MicrosoftWindowsPowerShell /all

Diga "sim" para reiniciar.

powershell
Add-WindowsFeature Server-Gui-Shell, Server-Gui-Mgmt-Infra
Shutdown -r -t 0

No servidor 2012 R2 Use Shutdown /r /t 0

    
por 21.05.2013 / 21:54