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

VBoxManage registervm — Register a virtual machine (VM). More information: <https://www.virtualbox.org/manual/ch08.html#vbox

Submitted by: @import:tldr-pages··
0
Viewed 0 times
virtualcommandclimoreregisterinformationmachinevboxmanage registervm

Problem

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

Solution

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

Register an existing VM:
VBoxManage registervm {{path/to/file.vbox}}


Supply the encryption password file of the VM:
VBoxManage registervm {{path/to/file.vbox}} --password {{path/to/password_file}}


Prompt for the encryption password on the command-line:
VBoxManage registervm {{path/to/file.vbox}} --password -

Code Snippets

Register an existing VM

VBoxManage registervm {{path/to/file.vbox}}

Supply the encryption password file of the VM

VBoxManage registervm {{path/to/file.vbox}} --password {{path/to/password_file}}

Prompt for the encryption password on the command-line

VBoxManage registervm {{path/to/file.vbox}} --password -

Context

tldr-pages: common/VBoxManage registervm

Revisions (0)

No revisions yet.