在Windows 10上安装VirtualBox后发现只能选择32位操作系统,不能选择64位操作系统,或者启动安装好的64位操作系统后电脑蓝屏(BSOD)。VMware也提示不支持CPU虚拟化技术VT-x/AMD-V。使用 Intel® Processor Identification Utility (https://downloadcenter.intel.com/download/7838) 查询确实Intel® Virtualization Technology支持是No,但是进入BIOS查询发现已经打开VT-x。
这时还需要禁用Hyper-V,Device Guard和Credential Guard。
禁用Hyper-V有两种方法:
- 使用管理员权限运行命令
bcdedit /set hypervisorlaunchtype off
- 使用”添加或删除Windows组件“图形界面程序,在里面取消勾选Hyper-V。
关闭Hyper-V
禁用Device Guard和Credential Guard可以下载Device Guard and Credential Guard hardware readiness tool (https://www.microsoft.com/en-us/download/details.aspx?id=53337) ,解压后以管理员权限运行PowerShell:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
输入Y确认
进入工具解压目录执行
.\DG_Readiness_Tool_v3.2.ps1 –Disable
可能会有注册表项或文件找不到的错误提示,没有关系。
禁用Device Guard和Credential Guard
命令执行完毕后重启电脑。提示确认关闭Credential Guard和Virtualization Based Security提示时按F3确认。
再次使用Intel® Processor Identification Utility确认Intel® Virtualization Technology支持是Yes。这样在VirtualBox里就可以安装使用64位操作系统了。
网友评论