tldr/pages/common/vboxmanage.md

23 lines
557 B
Markdown
Raw Normal View History

2019-06-03 13:17:57 +01:00
# VBoxManage
> Command-line interface to VirtualBox.
> Includes all the functionality of the GUI and more.
> Some subcommands such as `vboxmanage startvm` have their own usage documentation.
2019-06-03 13:17:57 +01:00
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-intro>.
- Display version:
2019-06-03 13:17:57 +01:00
`VBoxManage --version`
2019-06-03 13:17:57 +01:00
- Display help:
2019-06-03 13:17:57 +01:00
`VBoxManage --help`
2019-06-03 13:17:57 +01:00
- Display help for a VBoxManage subcommand (like `starvm`, `clonevm`, `import`, `export`, etc.):
2019-06-03 13:17:57 +01:00
`VBoxManage --help {{subcommand}}`
2019-06-03 13:17:57 +01:00
- Execute a VboxManage subcommand:
2019-06-03 13:17:57 +01:00
`VBoxManage {{subcommand}}`