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`