Yes, virtualizzation of virtualizzation, this is possible.
The following guide helps to to enable the virtualizzation inside a VM.
Steps:
- Turn off the VM
- Open PowerShell as Administrator and run the following commands:
$vmName = 'DEV-VM' Set-VMProcessor -VMName $vmName -ExposeVirtualizationExtensions $true Get-VMNetworkAdapter -VMName $vmName | Set-VMNetworkAdapter -MacAddressSpoofing On
This can be useful if you want create a BC container in hyperv isolation.
Did my HOW TO help you? Leave a reply.