In Windows 11 Home, the Hyper-V feature is not natively available through the "Windows Features" dialog, but it can still appear to be running due to certain dependencies or configurations, such as virtualization-related features.
You can try the following to disable it:
Open PowerShell with Administrator privileges by searching for "PowerShell" in the Start menu, right-clicking it, and selecting Run as Administrator.
Run the following commands to disable any Hyper-V and related components:
dism.exe /Online /Disable-Feature:Microsoft-Hyper-V-All
dism.exe /Online /Disable-Feature:VirtualMachinePlatform
dism.exe /Online /Disable-Feature:Microsoft-Windows-Subsystem-Linux
Sometimes, even after disabling features, Hyper-V might still be enabled due to the boot configuration. To address this, use the following command:
bcdedit /set hypervisorlaunchtype off
After running these commands, restart your PC to ensure the changes take effect.
If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.
hth
Marcin