From 4950f378644c1dee0adefb5b2866af45e5925668 Mon Sep 17 00:00:00 2001 From: Shelly David <59293978+shellydavid@users.noreply.github.com> Date: Wed, 22 Oct 2025 11:28:08 -0400 Subject: [PATCH] vboxmanage-{import, startvm}: remove `=` from options (#18951) Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/common/vboxmanage-import.md | 6 +++--- pages/common/vboxmanage-startvm.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/common/vboxmanage-import.md b/pages/common/vboxmanage-import.md index 53655433e1..812bfe50fd 100644 --- a/pages/common/vboxmanage-import.md +++ b/pages/common/vboxmanage-import.md @@ -25,12 +25,12 @@ - Set the guest OS type (one of `VBoxManage list ostypes`) for the imported VM: -`VBoxManage import {{path/to/file.ovf}} --ostype={{ostype}}` +`VBoxManage import {{path/to/file.ovf}} --ostype {{ostype}}` - Set the memory (in megabytes) for the imported VM: -`VBoxManage import {{path/to/file.ovf}} --memory={{1}}` +`VBoxManage import {{path/to/file.ovf}} --memory {{1}}` - Set the number of CPUs for the imported VM: -`VBoxManage import {{path/to/file.ovf}} --cpus={{1}}` +`VBoxManage import {{path/to/file.ovf}} --cpus {{1}}` diff --git a/pages/common/vboxmanage-startvm.md b/pages/common/vboxmanage-startvm.md index f38e088875..1ff7d947dc 100644 --- a/pages/common/vboxmanage-startvm.md +++ b/pages/common/vboxmanage-startvm.md @@ -21,4 +21,4 @@ - Start a virtual machine with an environment variable pair name value: -`VBoxManage startvm {{vm_name|uuid}} --put-env={{name}}={{value}}` +`VBoxManage startvm {{vm_name|uuid}} {{[-E|--putenv]}} {{name}}={{value}}`