Request an exact quote
Virtualization migration path

From VMware vSphere to Microsoft Hyper-V

Leaving vSphere for Hyper-V, the Windows Server Datacenter licensing angle, vCenter-to-SCVMM mapping, the Gen1/Gen2 trap, and how to run the V2V without a blue screen.

Effort
High
Est. timeline
~18 wks
Microsoft Hyper-V model
Windows Datacenter / core
Open source
No
▶ Model your savings in the interactive calculator

Broadcom’s subscription-only repackaging of VMware sent a wave of customers looking for a hypervisor they may already be paying for. Hyper-V is a mature Type-1 hypervisor that ships in the box with Windows Server, and for Windows-heavy estates it has a licensing twist that can make the move close to cost-neutral. This guide covers when Hyper-V is the right landing spot and how to execute the move cleanly.

The licensing angle that decides it

Windows Server Datacenter edition licenses the physical cores of the host and then grants unlimited Windows Server guests on that host. If you run mostly Windows VMs, you may already be buying (or close to buying) Datacenter licensing for those guests, so the hypervisor itself effectively comes for free, and you stop paying a separate per-core vSphere subscription on top. The comparison flips against Hyper-V when your estate is mostly Linux: there’s no Windows-guest density benefit to harvest, and Proxmox or XCP-ng may be a better fit.

The trade you are making

You gain a hypervisor with first-party support, deep Windows and Active Directory integration, and Failover Clustering for HA. You give up vCenter’s polish: centralized management comes from System Center Virtual Machine Manager (SCVMM), which is a separately licensed System Center component, or from the free Windows Admin Center and Failover Cluster Manager for smaller estates. Linux guests are supported and run well, but the ecosystem is Windows-first.

Architecture mapping

  • vCenter → SCVMM (full fleet management) or Windows Admin Center + Failover Cluster Manager (lighter).
  • vSphere HA → Windows Server Failover Clustering (WSFC) with Cluster Shared Volumes (CSV).
  • DRS → Dynamic Optimization in SCVMM (no exact match without SCVMM).
  • vSAN → Storage Spaces Direct (S2D) for hyper-converged; or keep your existing SAN via CSV.
  • VMFS datastores → CSV on S2D or block storage.
  • Distributed vSwitch → Hyper-V Virtual Switch with VLANs and Switch Embedded Teaming (SET) for NIC teaming.

Getting the VMs across

Common V2V paths, in increasing automation:

  1. Disk conversion. Power off the VM, then convert: qemu-img convert -f vmdk -O vhdx source.vmdk target.vhdx. Create a VM and attach the disk. StarWind V2V Converter is a popular free GUI for the same job.
  2. SCVMM V2V for fleets, or Azure Migrate if a stop in Azure fits the plan.
  3. Backup-tool restore. Veeam and similar can restore a VMware backup directly to a Hyper-V target.

The steps teams forget matter more than the copy itself: uninstall VMware Tools while the VM is still on ESXi, match the VM generation to the source firmware, install Hyper-V Integration Services / guest services, fix the synthetic NIC and static IP, and re-activate Windows.

The Gen1 vs Gen2 trap

Hyper-V has two VM types. Generation 1 emulates BIOS; Generation 2 is UEFI with Secure Boot. A guest that booted UEFI on vSphere must become a Gen2 VM, and a BIOS guest must be Gen1, you cannot change generation after creation, and a mismatch yields an unbootable VM. For Linux Gen2 guests, either disable Secure Boot or set the template to the Microsoft UEFI Certificate Authority so the bootloader is trusted.

Features with no clean Hyper-V equivalent

A few vSphere features have no clean Hyper-V equivalent and need a plan before cutover:

  • vSphere Fault Tolerance. Hyper-V offers Failover Clustering restart, not lockstep continuous availability. Workloads that depended on FT need application-level clustering instead.
  • Storage vMotion nuance. Hyper-V supports live and storage migration, but the cross-storage live moves you take for granted on vSphere may require Failover Clustering and CSV to be configured correctly first, so design shared storage before you rely on it.
  • NSX segmentation and distributed firewall. Recreate these with VLANs on the Hyper-V Virtual Switch plus host or Windows Firewall policy, or a third-party SDN; there is no import path.
  • VMware-specific tooling. vRealize/Aria automation, vSphere tags, and SPBM policies do not carry over. Rebuild templates, tagging, and placement rules natively.

Sign-off checks per VM

Verify the same items on every migrated VM so the runbook stays reliable:

  • VM generation matches source firmware (Gen2/UEFI or Gen1/BIOS) and the guest boots to a login prompt.
  • VMware Tools was removed while the VM was still on ESXi, and Integration Services / guest services are installed and healthy.
  • Synthetic NIC is bound to the right virtual switch and VLAN, with the correct static IP, gateway, and DNS.
  • Windows is re-activated and, for domain members, the machine account and time sync are intact.
  • A backup runs and a test restore boots on the Hyper-V target.
  • A live migration or a drained-node failover completes cleanly in the cluster.

Piloting the rollout

Run a pilot wave end to end, convert, drivers, validate, backup/restore test, then a live HA failover by draining a cluster node. Document the runbook and timings, then repeat wave by wave. Keep each source VM powered off but intact through hypercare so rollback is instant.

Net-net for Windows shops

For Windows-centric estates, vSphere → Hyper-V can be the cheapest exit because Datacenter licensing you may already need covers the guests. The technical risks are the Gen1/Gen2 firmware match, removing VMware Tools first, and rebuilding HA on Failover Clustering. Model your per-core numbers in the calculator above, and treat them as illustrative until a reseller quotes your exact licensing position.

Tooling & automation for this path

Veeam Instant Recovery to Hyper-V or SCVMM V2V; reinstall Integration Services; remap virtual switches.

Primary references: official Microsoft Hyper-V documentation ↗ and the VMware vSphere documentation ↗ , always verify version-specific behavior against them before you migrate.

Frequently asked questions

Does Windows Server Datacenter licensing really make the hypervisor free?

Effectively, yes, if your estate is Windows-heavy. Datacenter edition licenses the physical cores of the host and then permits unlimited Windows Server guests on that host, so guests you were already going to license cover the hypervisor as well. You stop paying a separate per-core vSphere subscription on top. The math flips against Hyper-V when most of your VMs are Linux, because there is no Windows-guest density benefit to harvest.

Can I change a VM's generation after conversion if I pick the wrong one?

No. Generation is fixed at creation time in Hyper-V, and you cannot convert Gen1 to Gen2 or back afterward. A UEFI guest from vSphere must become a Generation 2 VM and a BIOS guest must be Generation 1; a mismatch produces an unbootable VM. Confirm the source firmware before you build the target VM, because getting it wrong means rebuilding the VM shell and re-attaching the disk.

How do I convert a VMDK to VHDX for Hyper-V?

Power off the VM, then convert the disk with a tool such as qemu-img (qemu-img convert -f vmdk -O vhdx source.vmdk target.vhdx) or the free StarWind V2V Converter GUI. Create the Hyper-V VM with the correct generation and attach the resulting VHDX. For fleets, SCVMM's V2V or a backup-tool restore to a Hyper-V target automates the same conversion at scale.

Do I still need SCVMM, or can I manage Hyper-V for free?

You do not need SCVMM for basic operation. Smaller estates run comfortably on the free Windows Admin Center plus Failover Cluster Manager, which cover host, VM, and cluster management. SCVMM is a separately licensed System Center component that adds fleet-wide management and Dynamic Optimization (the closest thing to DRS). Buy it when you need centralized management across many hosts, not just to run the hypervisor.

Model your 3-year cost

Pre-filled for VMware vSphere → Microsoft Hyper-V; adjust every figure with your own numbers. Estimates are illustrative, not vendor quotes, see our methodology.

Sized at 256 physical CPU cores, cost is computed on this.
Stay on VMware vSphere (3yr)
$268,800
Move to Microsoft Hyper-V (3yr + migration)
$210,240
Projected savings
$58,560 (22%)
Payback period
19.9 mo
Build a decision report from these numbers:

How this is licensed: vSphere licenses the physical CPU cores of each host (16-core minimum per CPU), not VMs. Count total physical cores across hosts and set $/core to your subscription tier.

Illustrative, editable figures, not vendor pricing (defaults reviewed May 2026).

Request a vendor-accurate Microsoft Hyper-V quote

A guided builder that turns your estimates into a requirements report (RFQ) you can send to a vendor, partner, or distributor for a binding quote, then feed the real prices back into the calculator above. How our estimates work.

  1. 1Size it
  2. 2Requirements
  3. 3Your details
  4. 4Channels & export

How big is your VMware vSphere estate?

vSphere licenses physical cores across all hosts (16-core minimum per CPU). Not sure? Enter rough numbers, the distributor confirms exact counts later.

256 physical CPU cores
Default mid-size assumption (256 physical CPU cores)