LinuxCommandLibrary

vboxmanage-showvminfo

Show information about registered virtual machine.

TLDR

Show information about a particular virtual machine

$ VBoxManage showvminfo [vm_name|uuid]
copy


Show more detailed information about a particular virtual machine
$ VBoxManage showvminfo --details [vm_name|uuid]
copy


Show information in a machine readable format
$ VBoxManage showvminfo --machinereadable [vm_name|uuid]
copy


Specify password ID if the virtual machine is encrypted
$ VBoxManage showvminfo --password-id [password_id] [vm_name|uuid]
copy


Specify the password file if the virtual machine is encrypted
$ VBoxManage showvminfo --password [path/to/password_file] [vm_name|uuid]
copy


Show the logs of a specific virtual machine
$ VBoxManage showvminfo --log [vm_name|uuid]
copy

Copied to clipboard