Migration from Microsoft Azure to VMware

Prerequisites

  • Windows machine with Azure PowerShell installed

  • Sufficient local storage space for VHD download

  • StarWind V2V Converter for disk conversion

  • VMware Workstation Pro for OVF export

 

Step 1: Export VHD from Azure

Using Azure PowerShell

Save-AzureVhd [-Source] <URI> [-LocalFilePath] <String> [[-NumberOfThreads] <Int32>] [[-StorageKey] <String>] [[-OverWrite]] [<CommonParameters>]

Key Parameters:

-LocalFilePath - Local save path

NumberOfThreads - Download threads (optional)

OverWrite - Overwrite existing file

Source - Azure blob URI

StorageKey - Storage account key (if needed)

 

Example Commands:

  1. Basic download:

     
    Save-AzureVhd -Source "http://mystorage.blob.core.windows.net/vhds/myvm.vhd" -LocalFilePath "D:\exports\myvm.vhd"
  2. With overwrite:

     
    Save-AzureVhd -Source "http://mystorage.blob.core.windows.net/vhds/myvm.vhd" -LocalFilePath "D:\exports\myvm.vhd" -OverWrite
  3. Using storage key:

     
    Save-AzureVhd -Source "http://mystorage.blob.core.windows.net/vhds/myvm.vhd" -LocalFilePath "D:\exports\myvm.vhd" -StorageKey "AbCdEfG123456=="

Note: Find the correct VHD URL in Azure Portal → Storage Account → Blob Container

Step 2: Convert VHD to VMDK

  1. Use StarWind V2V Converter:

    • Source: Azure VHD

    • Target: VMware VMDK (select Thin Provisioned)

    • Configure disk geometry if needed

 

Use VMware Workstation Pro to create new VM and attach the converted VMDK disk and export to OVF format (see the article)

 

Have you tried Cloud4U cloud services? Not yet?

Visit Website

Try for free

  • 50 Users Found This Useful
Was this answer helpful?

Related Articles

Creating a machine from vmdk disk, exporting to OVF

To create a machine and export to OVF, we suggest using VMware Workstation Pro From the File...

Uploading and Downloading Virtual Machines in VMware vCloud Director

To upload the virtual machine from VMware vCloud Director:   Navigate to the "vApps" tab....

Migrating a Windows Physical Server to a Virtual Machine

Prerequisites VMware vCenter Converter Standalone must be installed on the source machine....

Converting KVM/Xen Virtual Disks to VMware Format Using QEMU

One method for migrating to an ESXi (VMware) hypervisor involves converting KVM or Xen disks...

Exporting a Virtual Machine With VMware vSphere client

Using VMware vSphere Client Select the virtual machine you want to export Navigate to...