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);
}
}
Look for a property called VirtualizationFirmwareEnabled
. If you do not see it, then your processor doesn't have that feature.
You can also open a PowerShell window and execute this command:
Get-CimInstance -ClassName win32_processor -Property name
Again, look for the property called VirtualizationFirmwareEnabled
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…