From 13fe11d1ef3b945d3e1a480ec91e24609527fb7e Mon Sep 17 00:00:00 2001 From: Daniel Berlin <103466878+Djb23@users.noreply.github.com> Date: Tue, 12 Aug 2025 20:30:59 -0400 Subject: [PATCH] vboxmanage-modifyvm: add page (#17581) Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> --- pages/common/vboxmanage-modifyvm.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/vboxmanage-modifyvm.md diff --git a/pages/common/vboxmanage-modifyvm.md b/pages/common/vboxmanage-modifyvm.md new file mode 100644 index 0000000000..21872ab62d --- /dev/null +++ b/pages/common/vboxmanage-modifyvm.md @@ -0,0 +1,20 @@ +# VBoxManage modifyvm + +> Change settings for a virtual machine that is stopped. +> More information: . + +- Rename the VM: + +`VBoxManage modifyvm {{uuid|vm_name}} --name {{new_name}}` + +- Adjust memory and CPU: + +`VBoxManage modifyvm {{uuid|vm_name}} --memory {{2048}} --cpus {{2}}` + +- Enable Remote Display (VRDE): + +`VBoxManage modifyvm {{uuid|vm_name}} --vrde on` + +- Enable session recording: + +`VBoxManage modifyvm {{uuid|vm_name}} --recording on`