How can I export a VM as an ova file from vCenter?

Problem:

How can I export a VM as an ova file from vCenter?

Solution:

Run the below in PowerCLI

Import-Module VMware.VimAutomation.Core

Connect-VIServer vCenter

Export-VApp -Destination 'E:\MyFolder\MyOVA.ova' -VM 'MyVMName' -Format Ova  

Leave a Reply

Your email address will not be published. Required fields are marked *