Диспетчер hyper v windows 10 home

Платформа виртуализации Hyper-V доступна не только в Windows Server, но и в десктопных редакциях Windows 10 и 11. С помощью встроенного гипервизора Hyper-V пользователи могут создавать и запускать виртуальные машины. В этой статье мы рассмотрим, как включить компоненты Hyper-V в Windows 10 и 11.

Компоненты роли виртуализации Hyper-V можно установить в Pro и Enterprise редакциях Windows 10 и 11. Сначала, нужно проверить, поддерживает ли ваш компьютер виртуализацию Hyper-V. Откройте командную строку с правами администратор и выполните:

systeminfo

Промотайте в конец вывода и проверьте, что включены следующие компоненты в разделе Hyper-V Requirements:

VM Monitor Mode Extensions: Yes
Virtualization Enabled In Firmware: Yes
Second Level Address Translation: Yes
Data Execution Prevention Available: Yes

Проверить требования Hyper-V Requirements

Если здесь указано Virtualization Enabled in Firmware: No, попробуйте включить аппаратную поддержку виртуализации в настройках BIOS/UEFI компьютера (может называться Intel VT-X или AMD-V).

Также проверить совместимость вашего процессора можно на вкладке CPU в диспетчере задач Windows. Здесь должно быть указано
Virtualization: Enabled
.

Наличие поддержки виртуализации в Windows

Если тут указано
A hypervisor has been detected. Features required for Hyper-V will not be displayed
, значит компоненты Hyper-V уже установлены.

Включить роль Hyper-V в Windows 10 и 11 можно через панель управления компонентами Windows Features. Выполните команду
optionalfeatures
и выберите для установки компоненты Hyper-V Platform и Management Tools.

Также вы можете включить компоненты Hyper-V в Windows из командной строки. С помощью PowerShell команды:

Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All

Или с помощью DISM:

dism.exe /Online /Enable-Feature:Microsoft-Hyper-V-All

Enable-WindowsOptionalFeature включить Microsoft-Hyper-V

После завершения установки компонентов перезагрузите компьютер. Проверьте, что компоненты гипервизора установлены:

Get-WindowsOptionalFeature -Online -FeatureName *hyper*|ft

Проверить что роль Hyper-V установлена

Включите автоматический запуск Hyper-V при загрузке:

bcdedit /set HypervisorLaunchType auto

Для управления Hyper-V и виртуальными машинами используется графическая консоль Hyper-V Manager (
virtmgmt.msc
). Запустите ее и можете начать создавать виртуальные машины.

графическая консоль Hyper-V manager

Также для управления гипервизором и ВМ можно использовать командлеты PowerShell из встроенного модуля Hyper-V.

Компонент виртуализации Hyper-V отсутствует в домашних (Home) редакциях Windows 10 и 11. Однако есть небольшой трюк, который позволяет установить роль Hyper-V из зранилища компонентов WinSxS даже в Home редакции Windows.

Создайте на рабочем столе файл enable-hyperv.bat с кодом

pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del hyper-v.txt

Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL
pause

Запустите BAT файл с правами администратора.

После завершения установки компонентов, перезагрузите компьютер. Проверьте, что виртуализация Hyper-V теперь доступна в вашей Home редакции Windows.

Запуск виртуальных машин Hyper-V в Windows 11 Home

Hyper-V is Microsoft’s virtualization platform. It is available on Windows Server operating systems and Microsoft has also added the Hyper-V functionality to Windows 8.1, Windows 10, and Windows 11.

Unfortunately, the Hyper-V feature is only available in Windows 10 Professional, Enterprise, and Education editions. You can’t install it on Windows 10 Home edition by default.

However, using the steps in this article, we’ll show you how to enable Hyper-V in the Windows 10 Home edition.

Table of Contents

Does Your System Support Virtualization?

Before moving forward, we need to check if our system supports virtualization. Hardware virtualization is required for Hyper-V to function correctly. Otherwise, you can use other virtualization platforms like Virtualbox and VMWare.

There are four basic requirements for Hyper-V to be installed on a Windows 10 computer:

  • VM Monitor Mode Extensions
  • Virtualization enabled in firmware
  • Second Level Address Translation (SLAT)
  • Data Execution Prevention

All four of these requirements can be easily checked through a Command Prompt cmdlet. Run the following cmdlet in an elevated Command Prompt and obtain the results on the four requirements:

systeminfo

This will generate a list, and you will find the section “Hyper-V Requirements” at the end of the list containing the details of the 4 requirements, as in the image below:

Check Hyper V requirements

Check Hyper-V requirements

If these requirements are met, the results will display “Yes.” However, if you find that “Virtualization Enabled In Firmware” states “No,” you need to enable it using the guide below.

Enable Virtualization in Firmware/BIOS

Most modern computers support all the requirements of Hyper-V. But some systems have virtualization disabled from BIOS. You can go to the BIOS setup computer at the startup and enable Virtualization using the following steps:

  1. Restart your computer and enter the BIOS setup using the hotkey.

  2. Here, look for the “Virtualization” tab and click on it, or use the arrow keys on the keyboard to highlight it and press Enter.

  3. Now enable Virtualization.

    Enable virtualization from BIOS 1

    Enable virtualization from BIOS
  4. Now save the new settings and exit BIOS. The system will now reboot normally.

When it reboots, continue with the following steps to install and enable Hyper-V.

Install Hyper-V in Windows 10 Home

Note: Since Windows Home edition comes without Hyper-V, you must first install it. If you have the Pro, Education, or Enterprise editions, then you may skip this step and proceed to the next section of this article. To check which edition you have, type in winver in the Run Command box and obtain your operating system’s details.

Follow the steps below to install and enable Hyper-V in Windows 10 Home:

  1. Download Hyper-V Installer by clicking on the following link:

      Hyper-V installer and enabler for Windows 10 Home (317 bytes, 41,046 hits)

  2. Once downloaded, right-click on the file and select Run as Administrator from the context menu. This will trigger the installation script.

    Run as admin

    Run as admin
  3. If prompted with a UAC, click Yes.

    UAC

    Click Yes on User Access Control

    It may take some time to complete the installation. Please let it complete without interruption.

  4. Once complete, press Y to continue.

    Press Y to continue 1

    Press Y to continue

    The computer will now reboot and update.

Once rebooted, Hyper-V will have installed and automatically enabled on your Windows Home.

How to Enable Hyper-V on Windows 10 (Pro, Enterprise, Education)

The method given above automatically enables Hyper-V as well as installing it on a Windows Home. However, if you are running Windows Pro, Education, or Enterprise edition, then you can enable Hyper-V using any one of the following methods.

Enable Hyper-V from Optional Features

Since Hyper-V is an optional feature that one can enable when needed, you can enable it from the Optional Features applet. Here is how:

  1. Open the Optional Features applet by typing in optionalfeatures in the Run Command box.

    Open the Optional Features applet
  2. Now look for the “Hyper-V” option from the list and check the box next to it. Then click Ok.

    Enable Hyper V from Optional Features

    Enable Hyper V from Optional Features
  3. You will now see a window applying the changes. Click Close when it is done.

    Close installation window 1

    Close installation window

Hyper-V will now be installed and enabled. You can now access the Hyper-V manager by searching for it in the search box in the taskbar or through the Start menu.

Open Hyper V Manager 1

Open Hyper V Manager

Alternatively, you can also use the other 2 command-line methods to enable Hyper-V on Windows 10.

Enable Hyper-V from Command Prompt

Follow these steps to enable Hyper-V using the DISM command tool in the Command Prompt:

  1. Run the following cmdlet in an elevated Command Prompt:

    DISM /Online /Enable-Feature /All /FeatureName:Microsoft-Hyper-V
    Enable Hyper V from Command Prompt 1

    Enable Hyper V from Command Prompt
  2. When asked, enter Y to restart the computer:

    Enter Y 1

    Enter Y

The computer will now restart, When it does, Hyper-V should be enabled successfully.

Enable Hyper-V from Windows PowerShell

If you’d rather prefer to use Windows PowerShell, here is how to enable Hyper-V:

  1. Run the following cmdlet in an elevated PowerShell:

    Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All
    Enable Hyper V using PowerShell 1

    Enable Hyper V using PowerShell
  2. When asked, enter Y and hit Enter to restart the computer:

    Enter Y 2 1

    Enter Y

    When the computer reboots, Hyper-V will have installed successfully.

These are the 3 methods to enable Hyper-V in Windows 10, provided that the hardware is supported and Hyper-V is installed.

How to Disable Hyper-V in Windows 10 (Home, Pro, Enterprise, Education)

If you don’t want this functionality on your computer, you can always disable it. There are three ways to disable it:

  • From Optional Features

    1. Open the Optional Features applet by typing in optionalfeatures in the Run Command box.

      Open Optional Features applet
    2. Uncheck the box next to Hyper-V and click Ok.

      Disable Hyper V from Optional Features 1

      Disable Hyper-V from Optional Features
    3. When done, click Restart now to finalize the changes.

      Restart PC 2

      Restart PC
  • From Command Prompt

    Run the following cmdlet in an elevated Command Prompt to disable Hyper-V:

    DISM /Online /Disable-Feature /FeatureName:Microsoft-Hyper-V-all

    If asked for a reboot, enter Y for Yes.

    Disable Hyper V from Command Prompt 1

    Disable Hyper V from Command Prompt
  • From PowerShell

    Run the following cmdlet in an elevated PowerShell to disable Hyper-V:

    Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All

    If asked for a reboot, enter Y for Yes.

    Disable Hyper V from Windows PowerShell 1

    Disable Hyper V from Windows PowerShell

Closing Thoughts

Sometimes Hyper-V is very useful even for home users. It can be used to test and evaluate new software without hurting the host system. But there are times when enabling virtualization support or installing Hyper-V is not recommended.

Hyper-V requires some system resources to run its virtual machines. For example, if you have 4 GB RAM, you won’t be able to give any resources to the virtual machine. So it would not be wise to enable Hyper-V functionality.

For what purpose do you want to enable Hyper-V functionality on your Windows 10 Home computer? Please share your thoughts in the comments below.

,

If you want to enable Hyper-V on Windows 10/11 Home edition, continue reading below.

Hyper-V is Microsoft’s hypervisor platform and, like the VΜware or VirtualBox hypervisors, allows you to run multiple operating systems on a singe Windows PC.

With the Hyper-V virtualization platform, you can create virtual machines that run on their own hardware without affecting the host. Compared to other hypervisors, Hyper-V offers comparable features and functionality which is why it is currently used by many system administrators to do their testing.

Hyper-V was originally built into Windows Server 2008 and later versions, but now it’s also available in Windows 10/11 Pro, Enterprise, and Education editions. But, don’t worry… if you’re a Windows 10/11 Home owner, in this article I’ll show you how you can install the Hyper-V platform even on your own system.

Hyper-V Requirements

A Virtual Machine (usually called «VM»), is a virtual computer with its own hardware (CPU, RAM, DISK, etc.), that is «borrowed» from the physical computer (usually called «HOST»). Thus, to install Hyper-V, the host machine must meet the following hardware requirements.

A. RAM: 8GB at least. (If you want to get better performance, RAM should be increased to at least 16GB or better to 32GB).

B. CPU: You must have a 64-bit Processor that supports Second Level Translation Address (SLAT). (Most Intel and AMD processors support the SLAT hardware mechanism, especially on computers pre-installed with Windows 8 or a later versions).

* Info: The «Second Level Address Translation» (SLAT), is a hardware mechanism which is supported when the Virtualization Technology is supported. If you own an Intel processor, go to your processor’s specification page and look if the «Intel® Virtualization Technology (Intel® VT-x)» located under «Advanced Technology». Alternatively see if the «Virtualization Technology» feature is enabled in BIOS.

C. in order to run Hyper-V, the following items must be enabled in BIOS : *

  1. Virtualization Technology
  2. Hardware Enforced Data Execution Prevention (DEP)

* Notes:
1. To find out if the above items are already enabled on your system:

1. Open Command Prompt and type systeminfo.exe

2. Scroll at the end of the report to find out if the Hyper-V requirements are met. If not, proceed to enable them in Bios by using the instructions below.

check hyper-v requirements

2. To Enable Virtualization Technology & Data Execution Prevention (DEP) in BIOS:

1. Restart the computer and repeatedly press one of these keys: F2, F10, F8, F12 or Del* when the computer manufacturer’s logo appears on the screen to enter the BIOS/UEFI settings (* The key may vary from manufacturer to manufacturer).

2. To Enable Virtualization in BIOS:

a. If you own an Intel CPU:

  • Click the Advanced* tab and set the Virtualization (aka «Intel® Virtualization Technology (VT-x)» to Enable.

* Note: In some BIOS the «Virtualization» setting is located in Performance, or in System Configuration sections.

b. If you own an AMD CPU:

  • Click the M.I.T. tab –> Advanced Frequency Settings –> Advanced Core settings and the set the SVM Mode (aka «Secure Virtual Machine») to Enable.

3. To Enable Data Execution Prevention (DEP) in BIOS:

Depending on your computer manufacturer, the option to enable the hardware DEP varies and can be located at Advanced or in Performance section and may be labeled as «Data Execution Prevention,» «XD,» «Execute Disable,» or «NX».

How to Enable Hyper-V on Windows 11/10 Home.

Once all the requirements above are met, follow these instructions to activate the Hyper-V feature on your Windows 10/11 home PC.

1. Open Notepad and paste the code below: *

pushd «%~dp0»
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
for /f %%i in (‘findstr /i . hyper-v.txt 2^>nul’) do dism /online /norestart /add-package:»%SystemRoot%\servicing\Packages\%%i»
del hyper-v.txt
Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL
pause

* Note: The above script adds the Hyper-V feature on Windows 10/11 home. The code has been created by the Microsoft Virtualization team on Github.

2. Save the file as Hyper-V Enabler.bat and close notepad.

3. Right-click on Hyper-V Enabler.bat and select Run as administrator. This will open the command prompt, and trigger the installation process to begin.

Enable Hyper-V On Windows 10/11 Home.

4. Once the installation completed, you will get a prompt asking if you want to restart the computer now, press Y to proceed.

Install Hyper-V On Windows 10/11 Home.

5. During rebooting Windows will install updates and will take a few minutes to complete.

6. After signing to Windows, press the Windows key + R keys to open the Run dialog box.

7. Type optionalfeatures and hit Enter.

Windows Features

8. Check the Hyper-V option and press OK to enable the feature.

Enable Hyper V Windows 11/10 Home

9. Wait for Windows to install Hyper-V, and when prompted, restart your computer.

10. Search for ‘hyper-v» to Open it and start creating virtual machines.

Activate Hyper-V Windows 10/11 Home

Final words: These are all the steps required to enable Hyper V on Windows 10 Home & Windows 11 Home Editions. If something doesn’t work as instructed, make sure your computer meets the requirements to run Hyper-V.

You can always disable Hyper-V if you no longer need it, either by unchecking the Hyper-V check box on Windows Features, or by executing the below command in PowerShell (Admin):

  • DISM /Online /Disable-Feature /FeatureName:Microsoft-Hyper-V

That’s it! Which method worked for you?
Let me know if this guide has helped you by leaving your comment about your experience. Please like and share this guide to help others.

If this article was useful for you, please consider supporting us by making a donation. Even $1 can a make a huge difference for us in our effort to continue to help others while keeping this site free:

  • Author
  • Recent Posts

Konstantinos is the founder and administrator of Wintips.org. Since 1995 he works and provides IT support as a computer and network expert to individuals and large companies. He is specialized in solving problems related to Windows or other Microsoft products (Windows Server, Office, Microsoft 365, etc.).

Hyper-V is supported in Pro, Enterprise and Education Edition of Windows 10 and Windows 11. This guide will show you how to enable Hyper-V in Home Editions of Windows 10 and Windows 11.

Hyper-V in Windows 10 and Windows 11 Home Edition

Hyper-V in Windows 10 and Windows 11 allows running Virtual Machine. It is supported only in Pro, Enterprise and Education Edition of Windows 10 and Windows 11 by default. But this guide will show you how to enable it in Home Editions of Windows 10 and Windows 11.

Check if virtualization is enabled:

  • Search for Command Prompt in Windows Start Menu and open it.
  • Type systeminfo and press Enter. Wait for the process to finish
  • Once the results appear, search for the Hyper-V Requirements section which is usually the last one.
    11

    • If it says A hypervisor has been detected. Features required for Hyper-V will not be displayed. that means Hyper-V is already enabled and there is no reason following this guide anymore.
    • Otherwise, check for Virtualization Enabled in Firmware:.
      • If its Yes, click here.
      • If its No, click here.

Enable virtualization

The process of enabling virtualization can vary a lot depending on the motherboard manufacturer, but it can be summarized in a few steps:

  • Completely Shutdown you Computer.
  • Turn on the computer and while it is booting up, keep pressing the key to open the BIOS (usually it is Del, F1, F2, F4, F11, or F12). This key depends on the Motherboard manufacturer. You can easily google it out.
  • Once you get into the BIOS, it may look very scary or intimidating, but don’t worry, you will get it right. Mouse may not work in BIOS so you might have to use the Directional or Arrow keys and the Enter key of the Keyboard to navigate.
    • Search for the CPU configuration section, it can be called CPU configuration, processor, Northbridge or Chipset and may be under an advanced or advanced mode tab or menu.
    • Now you need to look for the virtualization option and enable it, it can have different names such as Hyper-V, Vanderpool, SVM, AMD-V, Intel Virtualization Technology or VT-X.
  • Once its enabled, save and reboot your pc.
    If this part did not help you, you can specifically go the Website of the Mother Board Manufacturer of your Computer and ask for help there.

Enable Hyper-V

  • Open File Explorer on windows and Navigate to a folder.
  • Right click anywhere in a blank space inside the folder. Select New and then Click Text Document.
  • Open the file in Notepad and copy and paste the following text into it.
    pushd "%~dp0"
    dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
    for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
    del hyper-v.txt
    Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL
    pause
    
  • Click File from the Menu bar in the top of Notepad, then click Save as.... In the Save as Window that appears, Change the File name to "Hyper-V.bat" and click save.
  • Now Double click Hyper-V.bat to run it. This will take some time but will install all features required for Hyper-V. A Restart might be required after it is done.
  • After Restarting Windows, search for Turn Windows features on or off in the Start Menu search bar and open it.
    10

  • In the Window, lookout for Hyper-V, Virtual Machine Platform and Windows Hypervisor Platform. Then check the check boxes before them and click OK. This will also take some time and then a Restart is necessary.

Thats it Hyper-V is enabled.

Все способы:

  • Способ 1: Активация в «Программах и компонентах»
  • Способ 2: Активация через «PowerShell»
  • «Hyper-V» в Windows 10 Home
  • Вопросы и ответы: 14

Способ 1: Активация в «Программах и компонентах»

Платформа виртуализации «Hyper-V» является встроенным компонентом системы, однако по умолчанию она отключена. Чтобы иметь возможность пользоваться этим инструментом и запускать его из меню «Пуск», сначала его нужно активировать.

  1. Запустите апплет «Компоненты Windows» командой optionalfeatures, выполненной в диалоговом окошке быстрого запуска, вызываемого нажатием клавиш Win + R.
  2. Нет компонента hyper v в Windows 10-2

  3. Найдите в списке пункт «Hyper-V», отметьте его флажком и нажмите «OK». Установка будет выполнена автоматически, дополнительно Windows может потребовать перезагрузить компьютер.
  4. Нет компонента hyper v в Windows 10-2

После этого ярлыки запуска гипервизора станут доступны в меню «Пуск» и списке Windows. Если чекбокс «Hyper-V» затенен частично, разверните пункт и посмотрите, доступен ли для активации компонент «Платформа Hyper-V». Если название имеет блеклый цвет, а флажок в чекбоксе установить не удается, платформа виртуализации «Hyper-V» на данном компьютере недоступна в силу аппаратных ограничений процессора.

Способ 2: Активация через «PowerShell»

Активировать компонент «Hyper-V» можно также из «PowerShell» или классической «Командной строки».

  1. Запустите ту или иную консоль от имени администратора из контекстного меню кнопки «Пуск» или поиска Windows.
  2. Нет компонента hyper v в Windows 10-3

  3. Выполните команду DISM /Online /Enable-Feature /All /FeatureName:Microsoft-Hyper-V.
  4. Нет компонента hyper v в Windows 10-4

    Перезагрузите компьютер, введя в консоли «Y» и нажав клавишу ввода.

      «Hyper-V» в Windows 10 Home

      В Windows 10 редакции Home компонент «Hyper-V» не просто неактивен, он отсутствует в списке апплета «Компоненты Windows». Чтобы сделать его доступным, выполните следующие действия:

      1. Создайте «Блокнотом» текстовый файл на рабочем столе или в любом другом расположении.
      2. Нет компонента hyper v в Windows 10-5

      3. Вставьте в него такой код:

        pushd "%~dp0"
        dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
        for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
        del hyper-v.txt
        Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL
        Pause

      4. Нет компонента hyper v в Windows 10-6

      5. Сохраните файл как enable-hyper-v.cmd. Название может быть произвольным, главное, чтобы расширение файла было .cmd или .bat.
      6. Нет компонента hyper v в Windows 10-7

      7. Запустите созданный скрипт от имени администратора. После того как командный файл отработает, активируйте «Hyper-V» в окне апплета «Компоненты Windows».
      8. Нет компонента hyper v в Windows 10-8

      Отсутствие компонента «Hyper-V» может иметь и другие причины, в частности удаление его автором сборки (при скачивании пиратских копий ОС), что иногда встречается в выложенных в свободный доступ пользовательских релизах. В таких случаях рекомендуется выполнить обновление Windows 10 до новой сборки с помощью официального установочного образа либо переустановить систему.

      Наша группа в TelegramПолезные советы и помощь

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Какую папку можно очистить в windows 10
  • Как включить secure boot для windows 11
  • Как закрыть windows ink
  • Как переустановить интернет эксплорер на windows 10
  • Пакет драйверов windows samsung electronics для чего