Win32_Processor VirtualizationFirmwareEnabled always returns False

1k Views Asked by At

I try to query if Virtualization (VTx) is enabled on the System via VB.net

Dim searcher As New ManagementObjectSearcher(
            "root\CIMV2",
            "SELECT * FROM Win32_Processor")
            For Each queryObj As ManagementObject In searcher.Get()
                MsgBox(queryObj("VirtualizationFirmwareEnabled"))
            Next

Altough it is enabled in the BIOS, and I can run 64-Bit Guest Systems in my VirtualBox, Win32_Processor is always reporting false.

enter image description here

If I have a look in the Task - Manager, it states "Virtualization: enabled" enter image description here

Is there another possibility to query the VTx Status?

Thanks in advance!

0

There are 0 best solutions below