> 시스템 튜토리얼 > 윈도우 시리즈 > Windows 11에서 Hyper-V를 비활성화하거나 제거하는 방법

Windows 11에서 Hyper-V를 비활성화하거나 제거하는 방법

WBOY
풀어 주다: 2024-06-14 15:59:12
원래의
1626명이 탐색했습니다.

Hyper-V는 Windows 11 컴퓨터에 사전 설치되어 제공됩니다. 이 가상화 도구는 OS 홈 에디션에서 기본적으로 사용할 수 없지만 배치 스크립트를 사용하여 설치할 수 있습니다.

불행하게도 Hyper-V는 VMWare Workstation, VirtualBox 및 에뮬레이터와 같은 다른 가상화 도구를 포함하여 PC의 타사 앱과 충돌할 수 있습니다. 결과적으로 앱, PC 게임 또는 하드웨어 튜닝 유틸리티를 실행하려고 할 때 Hyper-V 감지 오류가 발생할 수 있습니다.

다행히도 클래식 Windows 기능 대화 상자, 명령 프롬프트 및 PowerShell을 사용하여 Windows 11에서 Hyper-V를 비활성화할 수 있습니다.

Hyper-V를 비활성화해야 하는 이유

설계상 프로세서에서 사용할 수 있는 Intel VT-x 및 AMD-V와 같은 통합 가상화 확장 프로그램은 하나의 가상화 도구에서만 사용할 수 있습니다. VMware WorkStation 및 Virtual Box를 포함한 타사 가상화 소프트웨어를 사용해야 하는 경우 Hyper-V 하이퍼바이저를 비활성화해야 합니다.

Windows 보안의 핵심 격리에 포함된 Device Guard, Credential Guard 및 메모리 무결성 기능을 비롯한 기타 하이퍼바이저 종속 기능을 비활성화해야 할 수도 있습니다.

Windows 11에서 Hyper-V가 실행 중인지 확인하는 방법

How to Disable or Remove Hyper-V in Windows 11

시스템 정보 앱에 액세스하여 Hyper-V 가상화가 실행 중인지 확인할 수 있습니다. 이는 Hyper-V 하이퍼바이저를 비활성화한 후 또는 비활성화하기 전에 상태를 확인해야 하는 경우 유용합니다.

컴퓨터에서 Hyper-V 하이퍼바이저 상태를 확인하려면:

  1. Win + R을 눌러 실행을 엽니다.
  2. msinfo32.exe를 입력하고 확인을 클릭하여 앱을 엽니다.
  3. 다음으로 세부 정보 탭 하단에서 다음 항목을 사용할 수 있는지 확인하세요.
    <code class="hljs ">A hypervisor has been detected. Features required for Hyper-V will not be displayed.</code> 
    로그인 후 복사
  4. 그렇다면 아래 설명된 대로 Hyper-V, 메모리 무결성 및 Credential Guard 기능을 비활성화해야 합니다. 오류 없이 다른 가상화 도구를 사용할 수 있습니다.

1. Windows 선택적 기능을 통해 Hyper-V를 비활성화하는 방법

Windows 기능 대화 상자를 사용하면 Windows 11에서 기본적으로 비활성화된 추가 기능을 추가할 수 있습니다. 또한 이를 사용하여 Hyper-V를 포함한 일부 고급 기능을 비활성화할 수도 있습니다.

Hyper-V 감지 오류를 수정하려면 Hyper-V 외에도 가상 머신 플랫폼 및 Windows 하이퍼바이저 플랫폼 기능을 비활성화해야 합니다.

Windows 기능 대화 상자를 사용하여 Hyper-V를 비활성화하려면:

  1. Win + R 키를 눌러 실행 대화 상자를 엽니다.
  2. control을 입력하고 확인을 클릭하여 제어판을 엽니다.
  3. 제어판에서 프로그램을 클릭하세요.How to Disable or Remove Hyper-V in Windows 11
  4. 다음으로 프로그램 및 기능을 클릭하세요.
  5. 왼쪽 창에서 Windows 기능 켜기/끄기를 클릭합니다.How to Disable or Remove Hyper-V in Windows 11
  1. Windows 기능 대화 상자에서 Hyper-V를 찾습니다.
  2. 기능을 비활성화하려면 Hyper-V 옵션을 선택 취소하세요.How to Disable or Remove Hyper-V in Windows 11
  3. 그런 다음 아래로 스크롤하여 가상 머신 플랫폼 및 Windows 하이퍼바이저 플랫폼 옵션을 찾습니다.How to Disable or Remove Hyper-V in Windows 11
  4. 두 옵션을 모두 선택 취소하고 확인을 클릭합니다.
  5. Windows는 시스템에서 Hyper-V 및 기타 기능을 제거합니다.
  6. 완료되면 PC를 다시 시작하여 변경 사항을 적용하세요.

2. BCDEDIT를 사용하여 Hyper-V를 비활성화하는 방법

How to Disable or Remove Hyper-V in Windows 11

BCDEdit 도구를 사용하여 부팅 구성에서 Hyper-V를 비활성화할 수 있습니다. 이는 Hyper-V를 비활성화하고 완전히 제거하지 않으려는 경우에 유용합니다.

BCDEdit을 사용하여 Hyper-V를 비활성화하려면:

  1. Press the Win key and type cmd.
  2. Right-click on the Command Prompt and select Run as administrator.
  3. In the Command Prompt window, type the following command and press Enter:
    <code class="hljs sql">bcdedit /set hypervisorlaunchtype off</code> 
    로그인 후 복사
  4. When the success message appears, close the Command Prompt and restart your PC to apply the changes.
  5. If you need to activate Hyper-V again, use the following command:
    <code class="hljs sql">bcdedit /set hypervisorlaunchtype auto</code> 
    로그인 후 복사
  6. Make sure to restart your PC to apply the changes.

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.

3. How to Uninstall Hyper-V Using the Command Prompt

How to Disable or Remove Hyper-V in Windows 11

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:

  1. Open Command Prompt as administrator.
  2. In the Command Prompt window, type the following command and press Enter:
    <code class="hljs bash">dism /online /disable-feature /featurename:Microsoft-hyper-v-all</code> 
    로그인 후 복사
  3. Upon execution, the DISM tool will disable Hyper-V and show the operation completed successfully message to indicate successful execution.
  4. Type exit, press Enter to close the Command Prompt, and restart your PC.

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.

4. How to Disable Hyper-V Using PowerShell

How to Disable or Remove Hyper-V in Windows 11

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:

  1. Press the Win key and type powershell.
  2. Right-click on PowerShell and select Run as administrator.
  3. Click Yes when prompted by User Account Control.
  4. In the PowerShell window, copy and paste the command below and press Enter:
    <code class="hljs ">Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All</code> 
    로그인 후 복사
  5. Wait for the process to complete. Once done, close PowerShell and restart your PC to apply the changes.

How to Uninstall the Hyper-V Virtual Network Adapter

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:

  1. Press Win + R to open Run.
  2. Type dvmgmt.msc and click OK to open Device Manager.
  3. In Device Manager, expand the Network Adapters section to locate the Hyper-V Virtual network adapters.
  4. If no virtual adapters associated with Hyper-V are listed, click View and select Show hidden devices.How to Disable or Remove Hyper-V in Windows 11
  5. Right-click on the Hyper-V Virtual Ethernet Adapter and select Uninstall device.

    Do not remove the Microsoft Wi-Fi Direct Virtual Adapter.

  6. Click Uninstall to confirm the action.How to Disable or Remove Hyper-V in Windows 11
  7. Repeat the steps to delete all the virtual network adapters associated with Hyper-V.
  8. Once done, close Device Manager and restart your PC. Next, uninstall Hyper-V and check for any improvements.

How to Turn Off Virtualization-Based Security (Memory Integrity)

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:

  1. Press Win + I to open the Settings app.
  2. In the left pane, click on the Privacy & security tab.How to Disable or Remove Hyper-V in Windows 11
  3. Next, click on Windows Security.
  4. Under the Protection areas section, click on Device security.How to Disable or Remove Hyper-V in Windows 11
  5. Next, click on Core isolation details under the Core isolation section.How to Disable or Remove Hyper-V in Windows 11
  6. Toggle the switch under Memory integrity to turn it Off.How to Disable or Remove Hyper-V in Windows 11
  7. Restart your PC to apply the changes.

How to Disable Device Guard and Credential Guard

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:

  1. Press Win + R to open Run.
  2. Type regedit and click OK to open Registry Editor.
  3. In Registry Editor, navigate to the following location:
    <code class="hljs ">HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa</code> 
    로그인 후 복사
  4. In the right pane, locate the LsaCfgFlagsDWORD value. You'll need to create a new key if no such value exists.How to Disable or Remove Hyper-V in Windows 11
  5. To create a new key, right-click the Lsa subkey in the left pane and select New < DWORD (32-bit)value. Rename the value as LsaCfgFlags.
  1. Next, double-click on LsaCfgFlags and type 0 in the Value data field.How to Disable or Remove Hyper-V in Windows 11
  2. Click OK to save the changes.
  3. Next, in Registry Editor, navigate to the following location:
    <code class="hljs ">HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard</code> 
    로그인 후 복사
  4. In the right pane, check if the EnableVirtualizationBasedSecurity value exists. If not, right-click the DeviceGuard subkey and select New > DWORD (32-bit) Value.How to Disable or Remove Hyper-V in Windows 11
  5. Next, rename the key as EnableVirtualizationBasedSecurity and set its value to 0.How to Disable or Remove Hyper-V in Windows 11
  6. Click OK to save the changes.

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.

Disable Hyper-V in Windows 11 to Run Third-Party Virtualization Tools and Apps

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:makeuseof.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿