#28/06/2025
A caption for the above image.
Virtualized Intel VT-x/EPT is Not Supported on this Platform
Malgrès quelques vérifications de base, j'ai rencontré une difficulté pour faire fonctionner l'option VT-x de VMWare sous Windows 11.
Ci-après, les démarches éffectuées pour FIX ce problème.
Vérifications de base
CPU Compatible?
Recherche pour les CPU INTEL
Recherche pour les CPU AMD
Désactiver Hyper-v et Virtual machine platform
+R, optionalfeatures
Désactiver hyper-v:
Désactiver Virtual machine platform:
Désactiver l'intégrité de la mémoire
Rechercher "isolation noyau":
Désactiver l'intégrité de la mémoire:
Reboot the machine!
Activer les options de virtualisation dans le bios
RTFM
Reste plus qu'à bidouiller le Registre!
sauvegardez votre Registre avant! (oui, moi aussi je l'ai fais)
# Disable VBS and Device Guard
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard" /v EnableVirtualizationBasedSecurity /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard" /v RequireMicrosoftSignedBootChain /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\LSA" /v LsaCfgFlags /t REG_DWORD /d 0 /f
Disable App Control for Business
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppHVSI" /v HypervisorEnforcedCodeIntegrity /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DeviceGuard" /v EnableVirtualizationBasedSecurity /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DeviceGuard" /v RequirePlatformSecurityFeatures /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CI\Config" /v VulnerableDriverBlocklistEnable /t REG_DWORD /d 0 /f
# Disable Hyper-V completely
bcdedit /set hypervisorlaunchtype off
dism /online /disable-feature /featurename:Microsoft-hyper-v-all /norestart
dism /online /disable-feature /featurename:WindowsHypervisorPlatform /norestart
dism /online /disable-feature /featurename:VirtualMachinePlatform /norestart
# Reboot the system
🚀 This will force VBS, Credential Guard, Hyper-V and App Control for Business to be disabled.
If it doesn't work, paste this after restarting
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\AppHVSI" -Name "HypervisorEnforcedCodeIntegrity" -Value 0
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\CI\Config" -Name "VulnerableDriverBlocklistEnable" -Value 0
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\DeviceGuard" -Name "EnableVirtualizationBasedSecurity" -Value 0
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\DeviceGuard" -Name "RequirePlatformSecurityFeatures" -Value 0
gpupdate /force
# Reboot the system
Source: broadcom.com - community