# Hyper-VでホストしたWindows10で、wsl2、Docker for Windowsを動かす方法 2021-03-08 入れ子になった仮想化による仮想マシンでの Hyper-V の実行 https://docs.microsoft.com/ja-jp/virtualization/hyper-v-on-windows/user-guide/nested-virtualization 1. 入れ子になった仮想化の構成 PowerShell ```PowerShell= Set-VMProcessor -VMName <VMName> -ExposeVirtualizationExtensions $true ``` 2. 入れ子になった仮想化の無効化 PowerShell ```PowerShell= Set-VMProcessor -VMName <VMName> -ExposeVirtualizationExtensions $false ``` ###### tags: `Hyper-V` `nested hyper-v`