Maison > Article > Tutoriel système > Comment désactiver ou supprimer Hyper-V dans Windows 11
Hyper-V est préinstallé sur les ordinateurs Windows 11. Bien que cet outil de virtualisation ne soit pas disponible directement sur l'édition Home du système d'exploitation, vous pouvez l'installer avec un script batch.
Malheureusement, Hyper-V peut entrer en conflit avec des applications tierces sur votre PC, notamment d'autres outils de virtualisation tels que VMWare Workstation, VirtualBox et des émulateurs. Par conséquent, vous pouvez rencontrer l'erreur détectée par Hyper-V lorsque vous essayez de lancer une application, des jeux PC ou des utilitaires de réglage du matériel.
Heureusement, vous pouvez désactiver Hyper-V dans Windows 11 à l'aide de la boîte de dialogue classique des fonctionnalités Windows, de l'invite de commande et de PowerShell.
De par sa conception, un seul outil de virtualisation peut utiliser l'extension de virtualisation intégrée, telle qu'Intel VT-x et AMD-V, disponible sur votre processeur. Si vous devez utiliser un logiciel de virtualisation tiers, notamment VMware WorkStation et Virtual Box, vous devez désactiver l'hyperviseur Hyper-V.
Vous devrez peut-être également désactiver d'autres fonctionnalités dépendantes de l'hyperviseur, notamment Device Guard, Credential Guard et la fonctionnalité d'intégrité de la mémoire qui font partie de Core Isolation dans la sécurité Windows.
Vous pouvez accéder à l'application Informations système pour déterminer si la virtualisation Hyper-V est en cours d'exécution. Ceci est utile si vous devez vérifier l'état de l'hyperviseur Hyper-V après ou avant sa désactivation.
Pour vérifier l'état de l'hyperviseur Hyper-V sur votre ordinateur :
<code class="hljs ">A hypervisor has been detected. Features required for Hyper-V will not be displayed.</code>
La boîte de dialogue Fonctionnalités Windows vous permet d'ajouter des fonctionnalités supplémentaires désactivées par défaut dans Windows 11. Vous pouvez également l'utiliser pour désactiver certaines fonctionnalités avancées, notamment Hyper-V.
Notez que pour corriger l'erreur détectée par Hyper-V, vous devez désactiver la fonctionnalité Plateforme de machine virtuelle et Plateforme d'hyperviseur Windows en plus d'Hyper-V.
Pour désactiver Hyper-V à l'aide de la boîte de dialogue Fonctionnalités Windows :
Vous pouvez désactiver Hyper-V dans la configuration de démarrage à l'aide de l'outil BCDEdit. Ceci est utile si vous souhaitez uniquement désactiver Hyper-V et ne pas le désinstaller complètement.
Pour désactiver Hyper-V à l'aide de BCDEdit :
<code class="hljs sql">bcdedit /set hypervisorlaunchtype off</code>
<code class="hljs sql">bcdedit /set hypervisorlaunchtype auto</code>
Additionally, you can use the BCDEdit tool to perform other advanced tasks, such as deleting the old boot menu options and adding a safe mode shortcut to the Windows 11 boot menu.
If the Windows Features dialog fails to remove Hyper-V, you can use the Command Prompt to disable the hypervisor. Here's how to do it:
<code class="hljs bash">dism /online /disable-feature /featurename:Microsoft-hyper-v-all</code>
After the restart, you can run your games and other hypervisors without the error. If not, open the Windows Features dialog, disable the Virtual Machine Platform and Windows Hypervisor Platform options, and restart your PC to turn off Hyper-V Hypervisor.
If you prefer PowerShell, use the WindowsOptionalFeature cmdlet to disable Hyper-V in Windows 11. To do this, launch PowerShell with admin privileges and execute the command. Here's how to do it:
<code class="hljs ">Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All</code>
During the restart following the uninstallation of Hyper-V, you may frequently encounter the message, "We couldn't complete the updates, undoing changes." To resolve this issue, ensure the Hyper-V virtual network adapters are deleted from your PC. You can delete the virtual network adapter from Device Manager.
To delete Hyper-V's virtual network adapters:
Do not remove the Microsoft Wi-Fi Direct Virtual Adapter.
If you encounter the Hyper-V detected issue even after you disable Hyper-V, try to disable the Memory integrity feature in Windows Security. The Memory integrity feature is part of Core Isolation. It helps prevent hackers from accessing and infecting high-security processes using malicious code.
By default, Windows disables the Memory integrity feature to avoid conflict with apps and device drivers due to incompatibility issues. This can also cause issues with third-party virtualization tools and programs needing access to your system's virtualization hardware.
To turn off Memory integrity in Windows Security:
Device Guard and Credential Guard don't play well with other virtualization software, including VMware Workstation. You may encounter an error saying Device Guard/Credential Guard is enabled when trying to power on the VMware Workstation.
Since you intend to use third-party virtualization software, you can safely disable Device Guard and Credential Guard using the Registry Editor.
That said, modifying the Windows Registry involves risk. We recommend you create a restore point and take a registry backup before attempting any modifications.
To disable Device Guard and Credential Guard:
<code class="hljs ">HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa</code>
<code class="hljs ">HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard</code>
Restart your computer to apply the changes and disable Device Guard and Credential Guard. If you ever need to enable these features, modify the value data and change it to 1.
Hyper-V is an excellent utility if you want an out-of-the-box virtualization solution. However, you must disable Hyper-V to use third-party virtualization software, including VirtualBox and WMware Workstation.
Fortunately, you can easily disable the Hyper-V Hypervisor and other Virtualization-based Security solutions to use third-party hypervisors without errors.
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!