Skip to main content

Virtualization Errors

This guide covers common virtualization-related errors and their solutions.

VMX/SVM Not Supported Error​

Error Message

VMX/SVM is not supported

Video Tutorial​

Solution Steps​

  1. Disable Windows Virtualization Features

    • Open Control Panel
    • Navigate to "Programs and Functions"
    • Click "Turn Windows features on or off"
    • Disable these features:
      • Virtual Machine Platform
      • Hyper-V
  2. Disable Hypervisor (if Step 1 doesn't work)

    • Open Command Prompt as Administrator
    • Run the following command:
      bcdedit /set hypervisorlaunchtype off
    • Restart your computer
  3. Windows 11 Specific Solution ( OR UNIVERSAL BUT BE CAREFUL CAN DESTORY PC)

    • If the above methods don't work, try this:
    • Open PowerShell as Administrator
    • Run these commands:
      takeown /F "C:\Windows\System32\hvix64.exe"
      icacls "C:\Windows\System32\hvix64.exe" /grant *$(([System.Security.Principal.WindowsIdentity]::GetCurrent()).User.Value):F
      takeown /F "C:\Windows\System32\hvax64.exe"
      icacls "C:\Windows\System32\hvax64.exe" /grant *$(([System.Security.Principal.WindowsIdentity]::GetCurrent()).User.Value):F
      del "C:\Windows\System32\hvix64.exe"
      del "C:\Windows\System32\hvax64.exe"
caution

The Windows 11 solution involves deleting system files. Make sure you have a backup before proceeding with this step.

BIOS Virtualization Error​

Error Message

Please enable Intel VT-X/AMD-V in the BIOS

Solution Steps​

  1. Enter BIOS

    • Restart your computer
    • During startup, press the BIOS key (usually Del, F2, F10, or F12)
    • Key varies by manufacturer:
      • Dell: F2 or F12
      • HP: F10
      • Lenovo: F1 or F2
      • ASUS: Del or F2
      • Acer: F2 or Delete
  2. Enable Virtualization

    • Look for one of these options (name varies by manufacturer):
      • "Intel Virtualization Technology"
      • "Intel VT-X"
      • "AMD-V"
      • "SVM Mode"
      • "Virtualization Technology"
    • Enable the option
    • Save changes and exit BIOS
    • Restart your computer
tip

If you can't find the virtualization option, check under:

  • Advanced Settings
  • CPU Configuration
  • System Configuration
  • Security

Verifying Virtualization Status​

You can verify if virtualization is properly enabled:

  1. Using Task Manager
    • Press Ctrl + Shift + Esc
    • Go to Performance tab
    • Look for "Virtualization" at the bottom

Virtualization Enabled

  1. Using System Information
    • Press Win + R
    • Type msinfo32 and press Enter
    • Under System Summary, look for:
      • "Hyper-V Requirements"
      • "Virtualization Enabled In Firmware"
note

Both methods should show virtualization as enabled after applying the solutions above.

Common Issues​

  • Virtualization Conflicts: Some antivirus software may conflict with virtualization. Temporarily disable your antivirus if issues persist.
  • Windows Updates: Recent Windows updates might re-enable Hyper-V. Repeat the solution steps if necessary.
  • BIOS Updates: In rare cases, updating your BIOS might reset virtualization settings.

For additional support, consult your motherboard or computer manufacturer's documentation.