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
.
manpreet
Best Answer
2 years ago
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
Thanks