3

As I understand it, when you enable Hyper-V role in Server 2008 and above, it will actually virtualize Server OS itself to run on top of Hyper-V.

Source:

When I enable the Hyper-V role on Win 10 Pro, does the same thing happen?

defcon
  • 31

1 Answers1

2

In both cases (server and non-server Windows versions) hyper-v is installed as a type 1 hypervisor in between the hardware and the host OS; so in that sense the Host OS is converted to a virtual machine.

There are differences in implementation between server and non-server versions however:

Differences between Hyper-V on Windows and Hyper-V on Windows Server

There are some features that work differently in Hyper-V on Windows than they do in Hyper-V running on Windows Server.

The memory management model is different for Hyper-V on Windows. On a server, Hyper-V memory is managed with the assumption that only the virtual machines are running on the server. In Hyper-V on Windows, memory is managed with the expectation that most client machines are running software on host in addition to running virtual machines. For example, a developer might be running Visual Studio as well as several virtual machines on the same computer.

Hyper-V features available in Windows Server only

There are some features included in Hyper-V on Windows Server that are not included in Hyper-V on Windows. These include:

Virtualizing GPUs using RemoteFX
Live migration of virtual machines from one host to another
Hyper-V Replica
Virtual Fiber Channel
SR-IOV networking
Shared .VHDX

Limitations

Using virtualization does have limitations. Features or applications that depend on specific hardware will not work well in a virtual machine. For example, games or applications that require processing with GPUs might not work well. Also, applications relying on sub-10ms timers such as live music mixing applications or high precision times could have issues running in a virtual machine.

In addition, if you have Hyper-V enabled, those latency-sensitive, high-precision applications may also have issues running in the host. This is because with virtualization enabled, the host OS also runs on top of the Hyper-V virtualization layer, just as guest operating systems do. However, unlike guests, the host OS is special in that it has direct access to all the hardware, which means that applications with special hardware requirements can still run without issues in the host OS.

Argonauts
  • 4,490