class Fission::Metadata

def self.delete_vm_info(vm_path)

Returns nothing.

Fission::Metadata.delete_vm_info '/vms/foo.vmwarevm'

Examples

vm_path - The absolute path to the directory of a VM.

in the Fusion GUI.
will recreate the metadata which is deleted. This leads to 'missing' VMs
running this method should succeed, but it's been observed that Fusion
method without the Fusion GUI application running. If the Fusion GUI is
running when this method is called. It's highly recommended to call this
Public: Deletes the Fusion metadata related to a VM. The VM should not be
def self.delete_vm_info(vm_path)
  metadata = new
  metadata.load
  metadata.delete_vm_restart_document(vm_path)
  metadata.delete_vm_favorite_entry(vm_path)
  metadata.save
end