vote up 0 vote down star

How can I detect if a system supports hardware virtualization via code? (Preferably in C# or C++).

I tried using WMI and ManagementObjectSearcher, and could not find a property that seemed to represent if virtualization support was present or not in the machine.

Bonus question: Is it possible to tell if the CPU supports HW virtualization, but disabled in BIOS?

flag

63% accept rate

3 Answers

vote up 2 vote down check

I think the original poster is asking how to detect that the computer hardware supports virtualisation, not that it is running inside a virtual machine. See this question for a possible answer.

Also, it might be worth seeing if you can check the CPU flags, as there will either be the Intel vmx flag or the AMD svm flag if the processor supports virtualisation extensions. I can't say I know how this should be done under Windows, but the information is available in /proc/cpuinfo on Linux.

link|flag
vote up 0 vote down

Not sure on the code, but Securable seems to be able to do this.

link|flag
Exactly like this application - but I need to do it in code. I have searched WMI query results high and low and could not find any property that seemed to be connected to HW virtualization – Rajah May 13 at 3:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.