HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

VBoxManage unregistervm — Unregister a virtual machine (VM). More information: <https://www.virtualbox.org/manual/ch08.html#vb

Submitted by: @import:tldr-pages··
0
Viewed 0 times
virtualcommandcliinformationvboxmanage unregistervmmachinemoreunregister

Problem

How to use the VBoxManage unregistervm command: Unregister a virtual machine (VM). More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-unregistervm>.

Solution

VBoxManage unregistervm — Unregister a virtual machine (VM). More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-unregistervm>.

Unregister an existing VM:
VBoxManage unregistervm {{uuid|vm_name}}


Delete hard disk image files, all saved state files, VM logs, and XML VM machine files:
VBoxManage unregistervm {{uuid|vm_name}} --delete


Delete all files from the VM:
VBoxManage unregistervm {{uuid|vm_name}} --delete-all

Code Snippets

Unregister an existing VM

VBoxManage unregistervm {{uuid|vm_name}}

Delete hard disk image files, all saved state files, VM logs, and XML VM machine files

VBoxManage unregistervm {{uuid|vm_name}} --delete

Delete all files from the VM

VBoxManage unregistervm {{uuid|vm_name}} --delete-all

Context

tldr-pages: common/VBoxManage unregistervm

Revisions (0)

No revisions yet.