LoginSignup
0
0

More than 1 year has passed since last update.

Hyper-V 仮想マシン内で Hyper-V の実行を可能にする設定

Last updated at Posted at 2021-07-13

やり方

  • Hyper-V ホスト上で次のコマンドを実行します。
Set-VMProcessor -VMName <VMName> -ExposeVirtualizationExtensions $true
  • 戻す場合は以下です。
Set-VMProcessor -VMName <VMName> -ExposeVirtualizationExtensions $false
  • 設定値の確認は以下です。
Get-VMProcessor -VMName * | ft VMName, ExposeVirtualizationExtensions

参考URL

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0