web-dev-qa-db-ja.com

Server 2012 Server Core PowerShellがインストールされていません

サーバーコアで、Powershellの再起動が突然インストールされなかった後、再インストールするにはどうすればよいですか?

まだリモート管理を設定していないので、それを使用して再インストールすることはできません。

'powershell'は、内部または外部のコマンド、操作可能なプログラム、またはバッチファイルとして認識されません。

展開イメージのサービスと管理(DISM.exe)ツールを使用してPowerShellを有効にします。

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

...またはそれで十分でない場合:

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

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

再起動する場合は「はい」と言ってください。

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

サーバー2012 R2ではShutdown /r /t 0を使用

2
geekgirl