Hyper-V는 Windows 11 컴퓨터에 사전 설치되어 제공됩니다. 이 가상화 도구는 OS 홈 에디션에서 기본적으로 사용할 수 없지만 배치 스크립트를 사용하여 설치할 수 있습니다.
불행하게도 Hyper-V는 VMWare Workstation, VirtualBox 및 에뮬레이터와 같은 다른 가상화 도구를 포함하여 PC의 타사 앱과 충돌할 수 있습니다. 결과적으로 앱, PC 게임 또는 하드웨어 튜닝 유틸리티를 실행하려고 할 때 Hyper-V 감지 오류가 발생할 수 있습니다.
다행히도 클래식 Windows 기능 대화 상자, 명령 프롬프트 및 PowerShell을 사용하여 Windows 11에서 Hyper-V를 비활성화할 수 있습니다.
설계상 프로세서에서 사용할 수 있는 Intel VT-x 및 AMD-V와 같은 통합 가상화 확장 프로그램은 하나의 가상화 도구에서만 사용할 수 있습니다. VMware WorkStation 및 Virtual Box를 포함한 타사 가상화 소프트웨어를 사용해야 하는 경우 Hyper-V 하이퍼바이저를 비활성화해야 합니다.
Windows 보안의 핵심 격리에 포함된 Device Guard, Credential Guard 및 메모리 무결성 기능을 비롯한 기타 하이퍼바이저 종속 기능을 비활성화해야 할 수도 있습니다.
시스템 정보 앱에 액세스하여 Hyper-V 가상화가 실행 중인지 확인할 수 있습니다. 이는 Hyper-V 하이퍼바이저를 비활성화한 후 또는 비활성화하기 전에 상태를 확인해야 하는 경우 유용합니다.
컴퓨터에서 Hyper-V 하이퍼바이저 상태를 확인하려면:
<code class="hljs ">A hypervisor has been detected. Features required for Hyper-V will not be displayed.</code>
Windows 기능 대화 상자를 사용하면 Windows 11에서 기본적으로 비활성화된 추가 기능을 추가할 수 있습니다. 또한 이를 사용하여 Hyper-V를 포함한 일부 고급 기능을 비활성화할 수도 있습니다.
Hyper-V 감지 오류를 수정하려면 Hyper-V 외에도 가상 머신 플랫폼 및 Windows 하이퍼바이저 플랫폼 기능을 비활성화해야 합니다.
Windows 기능 대화 상자를 사용하여 Hyper-V를 비활성화하려면:
BCDEdit 도구를 사용하여 부팅 구성에서 Hyper-V를 비활성화할 수 있습니다. 이는 Hyper-V를 비활성화하고 완전히 제거하지 않으려는 경우에 유용합니다.
BCDEdit을 사용하여 Hyper-V를 비활성화하려면:
<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.
위 내용은 Windows 11에서 Hyper-V를 비활성화하거나 제거하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!