Windows Nt 6.3 X64 -build 9600 - -hypervisor- Here

# Enable Hyper-V feature dism /online /enable-feature /all /featurename:Microsoft-Hyper-V Install-WindowsFeature -Name Hyper-V -IncludeManagementTools 4. Detection & Verification of Hypervisor Presence To confirm if the system is running as a root partition or under a hypervisor: A. Check System Boot Flags systeminfo | findstr "Hyper-V" Output if running as VM: Hyper-V Requirements: A hypervisor has been detected. B. CPUID Detection (x64 Assembly) bool isHypervisorPresent() // CPUID with EAX = 0x40000000 returns Hypervisor vendor string int cpuInfo[4]; __cpuid(cpuInfo, 0x40000000); char vendor[13] = 0; memcpy(vendor, &cpuInfo[1], 4); memcpy(vendor+4, &cpuInfo[2], 4); memcpy(vendor+8, &cpuInfo[3], 4); return (strcmp(vendor, "Microsoft Hv") == 0);