How to Disable Hyper-V, VBS, WSL2, Sandbox & Memory Integrity for Better VMware Workstation Performance on Windows 10
Posted: Thu Jun 18, 2026 5:26 pm
How to Disable Hyper-V, VBS, WSL2, Sandbox & Memory Integrity for Better VMware Workstation Performance on Windows 10
If VMware Workstation feels slow, nested virtualization is not working properly, or VMs experience performance issues, disable Microsoft's virtualization features that interfere with VMware.
Recommended Settings
Press Windows + R, type:
Uncheck the following features:
Step 2: Disable Hypervisor Using PowerShell (Administrator)
Run:
Restart Windows.
Step 3: Disable Memory Integrity
Navigate to:
Set Memory Integrity to OFF and reboot.
Step 4: Disable Credential Guard
Open PowerShell as Administrator:
Restart the system.
Step 5: Verify Hyper-V is Disabled
Run:
The following line should NOT appear:
PowerShell One-Liner (Run as Administrator)
Restart Windows after running the commands.
Result
After disabling these features, VMware Workstation Pro typically gains:
If VMware Workstation feels slow, nested virtualization is not working properly, or VMs experience performance issues, disable Microsoft's virtualization features that interfere with VMware.
Recommended Settings
- Core Isolation → Memory Integrity = OFF
- Credential Guard = OFF
- Windows Sandbox = OFF
- Windows Subsystem for Linux (WSL2) = OFF
- Hyper-V = OFF
- Virtual Machine Platform = OFF
- Windows Hypervisor Platform = OFF
- Microsoft Defender Application Guard = OFF (if installed)
- Device Guard = OFF
- Virtualization-Based Security (VBS) = OFF
Press Windows + R, type:
Code: Select all
optionalfeatures.exe
- Hyper-V
- Virtual Machine Platform
- Windows Hypervisor Platform
- Windows Sandbox
- Windows Subsystem for Linux
- Microsoft Defender Application Guard (if present)
Step 2: Disable Hypervisor Using PowerShell (Administrator)
Run:
Code: Select all
bcdedit /set hypervisorlaunchtype off
Step 3: Disable Memory Integrity
Navigate to:
Code: Select all
Windows Security
→ Device Security
→ Core Isolation
→ Memory Integrity
Step 4: Disable Credential Guard
Open PowerShell as Administrator:
Code: Select all
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Lsa" /v LsaCfgFlags /t REG_DWORD /d 0 /f
Step 5: Verify Hyper-V is Disabled
Run:
Code: Select all
systeminfo
Code: Select all
A hypervisor has been detected.
Code: Select all
Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All -NoRestart
Disable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform -NoRestart
Disable-WindowsOptionalFeature -Online -FeatureName HypervisorPlatform -NoRestart
Disable-WindowsOptionalFeature -Online -FeatureName Containers-DisposableClientVM -NoRestart
Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux -NoRestart
bcdedit /set hypervisorlaunchtype off
Result
After disabling these features, VMware Workstation Pro typically gains:
- Better VM performance
- Lower CPU overhead
- Improved disk I/O
- Faster VM startup times
- Full access to Intel VT-x / AMD-V
- Improved nested virtualization support