web-dev-qa-db-ja.com

Powershell Resize-VHDがコマンドレットの名前として認識されない

Resize-VHDコマンドレットを使用しようとしていますが、これにより次のエラーが発生します。

PS> Resize-VHD -Path "C:\Container.vhd" -SizeBytes 20GB
    Error:
        Resize-VHD : The term 'Resize-VHD' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
        At line:1 char:1
        + Resize-VHD -Path "C:\Container.vhd" -SizeBytes 20GB
        + ~~~~~~~~~~
            + CategoryInfo          : ObjectNotFound: (Resize-VHD:String) [], CommandNotFoundException
            + FullyQualifiedErrorId : CommandNotFoundException

どうすれば修正できますか?

7
Codeguard

WindowsにHyper-V機能をインストールする必要があることがわかりました(Hyper-V自体は必要ありませんが、VHDをポータブルファイルコンテナーとして使用しています)

  1. Control Panel | Programs and features | Turn windows features on or offに移動
  2. ティックHyper-V | Hyper-V Management tools | Hyper-V Module for Windows PowerShell
  3. インストールしたら、要求されたら再起動します
8
Codeguard