intel / haxm

Intel® Hardware Accelerated Execution Manager (Intel® HAXM)
BSD 3-Clause "New" or "Revised" License
3.18k stars 853 forks source link

when is it going to support windows 11 ? #460

Open sonivraj82 opened 1 year ago

sonivraj82 commented 1 year ago

I was installing android studio and failed. Is it due to not support of win 11, yes I am using win 11. I checked the processor requirements but was not able to check, though i am not a tech geek. Can anyone please check for me. My processor is intel core i7 8550U. 8 Gen

bryantclcqq commented 1 year ago

Do you close all hyperv-releated features(e.g memory integrity) ?

skull-squadron commented 1 year ago

7.8.0 works on i7-8560U (Kaby Lake R).

It's absolutely required to disable HVCI (memory integrity) because it causes virtualization to run even without the Hyper-V features installed.

  1. Close all other apps
  2. Run these commands in an elevated PowerShell (as Administrator):
dism /Online /Disable-Feature:Microsoft-Hyper-V-All

bcdedit /set hypervisorlaunchtype Off

sc config vmickvpexchange start= disabled
sc config vmicguestinterface start= disabled
sc config vmicshutdown start= disabled
sc config vmicheartbeat start= disabled
sc config vmicvmsession start= disabled
sc config vmicrdv start= disabled
sc config vmictimesync start= disabled
sc config vmicvss start= disabled

reg add HKLM\System\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity /v Enabled /t REG_DWORD /d 0 /f

shutdown /r /f /t 10 /d p:02:04 /c "Restart to disable Hyper-V and HVCI to configure system to install Intel HAXM correctly, likely used for Android development"

This issue can be closed as a workaround exists.