IT Knowledgebase
< All Topics
Print

How to Install Hyper-V on Windows 10

Install Hyper-V on Windows 10

You must enable the Hyper-V role before you can create virtual machines on Windows 10. This can be done using the Windows 10 control panel, PowerShell or the Deployment Imaging Servicing and Management tool (DISM). This documents walks through each of these.

Before enabling Hyper-V, make sure your system is compatible. For more information, see Windows 10 Hyper-V System Requirements.

Manually Install the Hyper-V role

  1. Right click on the Windows button and select ‘Programs and Features’.
  2. Select Turn Windows Features on or off.
  3. Select Hyper-V and click OK.

When the installation has completed you are prompted to restart your computer.

Install Hyper-V with PowerShell

  1. Open a PowerShell console as Administrator.
  2. Run the following command:
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All

When the installation has completed you need to reboot the computer.

Install Hyper-V with DISM

The Deployment Image Servicing and Management tool or DISM is used to service Windows images and prepare Windows Pre installation environments. DISM can also be used to enable Windows features while the operating system is running. For more information, see DISM Technical Reference.

To enable the Hyper-V role using DISM:

  1. Open up a PowerShell or CMD session as Administrator.
  2. Type the following command:
DISM /Online /Enable-Feature /All /FeatureName:Microsoft-Hyper-V

Create a Virtual Switch

Before you create a virtual machine in Hyper-V, you may want to provide a way for this virtual machine to connect to a physical network. Hyper-V includes software-based networking technology that allows a virtual machine’s network card to connect to a virtual switch, providing network connectivity. Each virtual switch created in Hyper-V can be configured with one of three connection types:

  • External Network – the virtual switch is connected to a physical network adapter which provides connectivity between the physical network, the Hyper-V host, and the virtual machine. In this configuration, you can also enable or disable the host’s ability to communicate over the physically connected network card. This can be useful to isolate only VM traffic to a particular physical network card.
  • Internal Network – the virtual switch is not connected to a physical network adapter. However, network connectivity exists between the Hyper-V host and any virtual machines connected to this switch.
  • Private Network – the virtual switch is not connected to a physical network adapter and connectivity does not exist between the Hyper-V host and any virtual machines connected to this switch.

Manually Create a Virtual Switch

This exercise walks through how to create an external virtual switch using the Hyper-V Manager. When completed, your Hyper-V host contains a virtual switch that can be used to connect virtual machines to a physical network.

  1. Open up Hyper-V Manager.
  2. Right-click on the name of the Hyper-V host and select Virtual Switch Manager…
  3. Under ‘Virtual Switches’, select New virtual network switch.
  4. Under ‘What type of virtual switch do you want to create?’, select External.
  5. Select the Create Virtual Switch button.
  6. Under ‘Virtual Switch Properties’, give the new switch a name such as External VM Switch.
  7. Under ‘Connection Type’, ensure that External Network has been selected.
  8. Select the physical network card to be paired with the new virtual switch. This is the network card that is physically connected to the network.
  9. Select Apply to create the virtual switch. At this point you will most likely see the following message. Click Yes to continue.
  10. Select OK to close the Virtual Switch Manager Window.

Create a Virtual Switch with PowerShell

The following steps can be used to create a virtual switch with an external connection using PowerShell.

  1. Use Get-NetAdapter to return a list of network adapters connected to the Windows 10 system. PS C:\> Get-NetAdapter Name InterfaceDescription ifIndex Status MacAddress LinkSpeed ---- -------------------- ------- ------ ---------- --------- Ethernet 2 Broadcom NetXtreme 57xx Gigabit Cont... 5 Up BC-30-5B-A8-C1-7F 1 Gbps Ethernet Intel(R) PRO/100 M Desktop Adapter 3 Up 00-0E-0C-A8-DC-31 10 Mbps
  2. Select the network adapter to use with the Hyper-V switch and place an instance in a variable named $net. $net = Get-NetAdapter -Name 'Ethernet'
  3. Execute the following command to create the new Hyper-V virtual switch. New-VMSwitch -Name "External VM Switch" -AllowManagementOS $True -NetAdapterName $net.Name

Virtual Switches and Laptops

If running Windows 10 Hyper-V on a laptop, you may want to create a virtual switch for both the Ethernet and wireless network cards. With this configuration, you can change your virtual machines between these switches depending on how the laptop is connected to the network. Virtual machines will not automatically switch between wired and wireless.

Deploy a Windows Virtual Machine in Hyper-V on Windows 10

You can create a virtual machine and deploy an operating system to it in many different ways, such as using Windows Deployment Services, attaching a prepared virtual hard drive, or manually using the installation media. This article walks through how to create a virtual machine and deploy an operating system to the virtual machine using the operating system installation media.

Before starting this exercise, you need an .iso file for the operating system that you would like to deploy. If needed, grab an evaluation copy of Windows 8.1 or Windows 10 from the TechNet Evaluation Center.

Create a Virtual Machine with Hyper-V Manager

These steps walk through how to manually create a virtual machine and deploy an operating system to this virtual machine.

  1. In Hyper-V Manager, click Action > New > Virtual Machine to bring up the New Virtual Machine Wizard.
  2. Review the ‘Before You Begin’ content and click Next.
  3. Give the virtual machine a name. Note: This is the name Hyper-V uses for the virtual machine, not the computer name given to the guest operating system that will be deployed inside the virtual machine.
  4. Choose a location where the virtual machine files will be stored such as c:\virtualmachine. You can also accept the default location. Click Next when done.
  5. Select a generation for the machine and click Next. Generation 2 virtual machines were introduced with Windows Server 2012 R2 and provide a simplified virtual hardware model and some additional functionality. You can only install a 64-bit operating system on a Generation 2 virtual machine. For more information on Generation 2 virtual machines, see the Generation 2 Virtual Machine Overview. If the new virtual machine is configured as Generation 2 and will be running a Linux distribution, secure boot will need to be disabled. For more information on secure boot, see Secure Boot.
  6. Select 2048 MB for the Startup Memory value and leave Use Dynamic Memory selected. Click the Next button. Memory is shared between a Hyper-V host and the virtual machine running on the host. The number of virtual machines that can run on a single host is in part dependent on available memory. A virtual machine can also be configured to use Dynamic Memory. When enabled, dynamic memory reclaims unused memory from the running virtual machine. This allows more virtual machines to run on the host. For more information on Dynamic Memory, see the Hyper-V Dynamic Memory Overview.
  7. On the Configure Networking wizard, select a virtual switch for the virtual machine and click Next. For more information, see Create a Virtual Switch.
  8. Give the virtual hard drive a name, select a location or keep the default, and finally specify a size. Click Next when ready. A virtual hard drive provides storage for a virtual machine similar to a physical hard drive. A virtual hard drive is required so that you can install an operating system on the virtual machine.
  9. On the Installation Options wizard, select Install an operating system from a bootable image file and then select an operating system .iso file. Click Next once completed. When creating a virtual machine, you can configure some operating system installation options. The three options available are:
    • Install an operating system later – this option makes no additional modification to the virtual machine.
    • Install an operating system from a bootable image file – this is similar to inserting a CD into the physical CD-ROM drive of a physical computer. To configure this option, select a .iso image. This image will be mounted to the virtual CD-ROM drive of the virtual machine. The boot order of the virtual machine is changed to boot first from the CD-ROM drive.
    • Install an operating system from a network-based installation server – This option is not available unless you have connected the virtual machine to a network switch. In this configuration, the virtual machine attempts to boot from the network.
  10. Review the virtual machine details and click Finish to complete the virtual machine creation.

Create a Virtual Machine with PowerShell

  1. Open up the PowerShell ISE as Administrator.
  2. Run the following script. # Set VM Name, Switch Name, and Installation Media Path. $VMName = 'TESTVM' $Switch = 'External VM Switch' $InstallMedia = 'C:\Users\Administrator\Desktop\en_windows_10_enterprise_x64_dvd_6851151.iso' # Create New Virtual Machine New-VM -Name $VMName -MemoryStartupBytes 2147483648 -Generation 2 -NewVHDPath "D:\Virtual Machines\$VMName\$VMName.vhdx" -NewVHDSizeBytes 53687091200 -Path "D:\Virtual Machines\$VMName" -SwitchName $Switch # Add DVD Drive to Virtual Machine Add-VMScsiController -VMName $VMName Add-VMDvdDrive -VMName $VMName -ControllerNumber 1 -ControllerLocation 0 -Path $InstallMedia # Mount Installation Media $DVDDrive = Get-VMDvdDrive -VMName $VMName # Configure Virtual Machine to Boot from DVD Set-VMFirmware -VMName $VMName -FirstBootDevice $DVDDrive

Complete the Operating System Deployment

In order to finish building your virtual machine, you need to start the virtual machine and walk through the operating system installation.

  1. In Hyper-V Manager, double-click on the virtual machine. This launches the VMConnect tool.
  2. In VMConnect, click on the green Start button. This is like pressing the power button on a physical computer. You may be prompted to ‘Press any key to boot from CD or DVD’. Go ahead and do so. Note: You may need to click inside the VMConnect window to ensure that your keystrokes are sent to the virtual machine.
  3. The virtual machine boots into setup and you can walk through the installation like you would on a physical computer.

Note: Unless you’re running a volume-licensed version of Windows, you need a separate license for Windows running inside a virtual machine. The virtual machine’s operating system is independent of the host operating system.

Messenger