Additional Microsoft Defender tools and services that provide security across various platforms and environments
Hello,
You are very close. The fix is to reset the hypervisor and VBS configuration, enable the required Windows features, then turn HVCI on from the registry so it sticks across the reboot.
Open Start, type cmd, right click Command Prompt, choose Run as administrator.
First, reset the boot configuration for the hypervisor and clear any flags that can block Code Integrity:
bcdedit /set {current} hypervisorlaunchtype auto
bcdedit /deletevalue {current} testsigning
bcdedit /deletevalue {current} nointegritychecks
bcdedit /deletevalue {current} hypervisordebug
Without closing the elevated window, make sure the Windows virtualization components that VBS depends on are enabled:
dism /online /enable-feature /featurename:HypervisorPlatform /all /norestart
dism /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
Now enable VBS and Hypervisor-Enforced Code Integrity directly in the system configuration:
reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard" /v EnableVirtualizationBasedSecurity /t REG_DWORD /d 1 /f
reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity" /v Enabled /t REG_DWORD /d 1 /f
Restart the PC once. Let the first boot complete even if it seems slower than usual.
Before trying Valorant, press Start and type msinfo32, open System Information, then check the right pane for Virtualization-based security. It should show Running. Also check Device Guard properties there.
Alternatively, open Windows Security > Device security > Core isolation details and confirm Memory integrity is
Onand staysOn.
If it still reverts, the most likely cause is an early-boot driver that is not flagged in the Core isolation UI. In that case, the next step would be to collect the latest entries from Event Viewer > Applications and Services Logs > Microsoft > Windows > CodeIntegrity > Operational right after the failed attempt and we will read which driver blocked HVCI at boot.