如何启用英特尔虚拟化技术? [英] How do I enable Intel virtualization technology?

查看:51
本文介绍了如何启用英特尔虚拟化技术?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要检查我的 CPU 中是否启用了 Intel 虚拟化技术.问题是 - 当我打开 BIOS 设置时,我什么也没看到.BIOS 版本为:W7235IMS V1.9

I need to check whether or not the Intel virtualization technology is enabled in my CPU. Problem is - when I open the BIOS setup I don't see anything about it. The BIOS version is : W7235IMS V1.9

谢谢

推荐答案

在C#中,你可以运行这个程序:

In C#, you can run this program:

ManagementClass managClass = new ManagementClass("win32_processor");
ManagementObjectCollection managCollec = managClass.GetInstances();

foreach (ManagementObject managObj in managCollec)
{
   foreach (var prop in managObj.Properties)
   {
       Console.WriteLine("Property Name: {0} Value: {1}",prop.Name,prop.Value);
   }               
}

查找名为 VirtualizationFirmwareEnabled 的属性.如果您没有看到它,那么您的处理器没有该功能.

Look for a property called VirtualizationFirmwareEnabled. If you do not see it, then your processor doesn't have that feature.

您也可以打开 PowerShell 窗口并执行以下命令:

You can also open a PowerShell window and execute this command:

Get-CimInstance -ClassName win32_processor -Property name

再次查找名为 VirtualizationFirmwareEnabled 的属性.

Again, look for the property called VirtualizationFirmwareEnabled.

这篇关于如何启用英特尔虚拟化技术?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆