A Microsoft desktop and app virtualization service that runs on Azure. Previously known as Windows Virtual Desktop.
Hi @OKADA
Directly we cannot to access BIOS so, enable nested virtualization
from Azure CLI locally or cloud shell.
az vm update \
-g YourResourceGroup \
-n YourVMName \
--set "additionalCapabilities.enableNestedVirtualization=true"
Stop the VM
Start the VM (not restart — full stop/start is required)
After this, Windows inside the VM will detect virtualization.
from powershell
Inside the VM:
Enable Hyper‑V
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
Enable virtualization platform
Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform
Ensure Hyper‑V is active
bcdedit /set hypervisorlaunchtype auto
Thanks.