Hello everyone, I wrote the following article today, which addresses which registry keys must be created and configured, for this to work.
--
Title: Using 'hardware assisted virtualization' outside Hyper-V
Author: _____
Date: 9/4/2025
Tags: VMware, VirtualBox, hardware assisted virtualization, Hyper-V, Windows 11
Error Message: Virtualized Intel VT-x/EPT not supported on this platform/ Workstation does not support nested virualisation on the host
The following Windows 11 features must be disabled for 'hardware assisted virtualization' capabilities like VT-x and AMD-V.to work in Windows 11 without Hyper-V. However additional registry keys needed to be created on Windows 11 24H2 to disable 'memory integrity'
| Feature |
Purpose |
Blocks VT-x for VMware? |
| Hyper-V |
Native virtualization |
✅ Yes |
| VBS |
Isolate sensitive OS components |
✅ Yes |
| HVCI |
Driver integrity |
✅ Yes |
| Credential Guard |
Protect credentials |
✅ Yes |
| Virtual Machine Platform |
Enable WSL2/Docker |
✅ Yes |
| Windows Hypervisor Platform |
API for virtualization |
✅ Yes |
--------
# Run as Administrator
# Create missing registry keys
New-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Control\DeviceGuard" -Force | Out-Null
New-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios" -Force | Out-Null
New-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity" -Force | Out-Null
# Disable VBS and Memory Integrity
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\DeviceGuard" -Name "EnableVirtualizationBasedSecurity" -Value 0 -Type DWord
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\DeviceGuard" -Name "RequirePlatformSecurityFeatures" -Value 0 -Type DWord
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity" -Name "Enabled" -Value 0 -Type DWord
# Disable VBS via Group Policy
New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DeviceGuard" -Force | Out-Null
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DeviceGuard" -Name "EnableVirtualizationBasedSecurity" -Value 0 -Type DWord
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DeviceGuard" -Name "RequirePlatformSecurityFeatures" -Value 0 -Type DWord
# Disable Credential Guard
New-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Lsa" -Force | Out-Null
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Lsa" -Name "LsaCfgFlags" -Value 0 -Type DWord
# Disable Hyper-V and related features via DISM
dism /online /disable-feature /featurename:Microsoft-Hyper-V-All /norestart
dism /online /disable-feature /featurename:VirtualMachinePlatform /norestart
dism /online /disable-feature /featurename:WindowsHypervisorPlatform /norestart
# Disable Hypervisor launch
bcdedit /set hypervisorlaunchtype off
# Confirmation
Write-Host "✅ All virtualization-blocking features have been disabled. Please restart your system to apply changes."
-------------------------------------------
Original Message:
Sent: Jul 13, 2025 02:31 AM
From: prince Tiwari
Subject: Windows 11 24H2 update and Workstation Pro cannot do nested virtualization
Try it, it's work in win 11
"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\ WindowsHello\Enabled" -> 0