跳到主要内容

故障排除

故障排除

21 solutions

VMX/SVM Is Not Supported

  1. 打开 Control Panel

  2. 进入 Programs and Features → Turn Windows features on or off

  3. 确认以下功能已禁用:

  • Virtual Machine Platform

  • Hyper-V

  1. 如果错误仍然存在,请以管理员身份打开命令提示符。

  2. 输入:

bcdedit /set hypervisorlaunchtype off

  1. 按下 Enter。

  2. 重启电脑。

如果你使用的是 Windows 11 且上述步骤未能解决问题,请以管理员身份打开 PowerShell,并完整运行以下命令:

takeown /F "C:\Windows\System32\hvix64.exe"
icacls "C:\Windows\System32\hvix64.exe" /grant *$(([System.Security.Principal.WindowsIdentity]::GetCurrent()).User.Value):For
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"

Warning

最后这套 Windows 11 流程会取得并删除 Windows 虚拟机监控程序的系统文件。这可能影响 Windows 虚拟化功能和系统稳定性。