Comment convertir un fichier VMDK VMWare en fichier VHD Hyper-V ?
Comment convertir un fichier VMDK VMWare en fichier VHD Hyper-V ?
Comment convertir un fichier disque dur virtuel VMDK de VMWare en fichier VHD pour Hyper-V ?
Re: Comment convertir un fichier VMDK VMWare en fichier VHD Hyper-V ?
Plusieurs options :
1. **Microsoft Virtual Machine Converter (MVMC)** - Outil gratuit de Microsoft
2. **StarWind V2V Converter** - Gratuit, interface graphique simple
3. **qemu-img** :
```
qemu-img convert -f vmdk -O vpc source.vmdk destination.vhd
```
Pour VHDX (recommandé pour Hyper-V 2012+) :
```
qemu-img convert -f vmdk -O vhdx source.vmdk destination.vhdx
```
1. **Microsoft Virtual Machine Converter (MVMC)** - Outil gratuit de Microsoft
2. **StarWind V2V Converter** - Gratuit, interface graphique simple
3. **qemu-img** :
```
qemu-img convert -f vmdk -O vpc source.vmdk destination.vhd
```
Pour VHDX (recommandé pour Hyper-V 2012+) :
```
qemu-img convert -f vmdk -O vhdx source.vmdk destination.vhdx
```