We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e17b40c commit 13fe11dCopy full SHA for 13fe11d
pages/common/vboxmanage-modifyvm.md
@@ -0,0 +1,20 @@
1
+# VBoxManage modifyvm
2
+
3
+> Change settings for a virtual machine that is stopped.
4
+> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-modifyvm>.
5
6
+- Rename the VM:
7
8
+`VBoxManage modifyvm {{uuid|vm_name}} --name {{new_name}}`
9
10
+- Adjust memory and CPU:
11
12
+`VBoxManage modifyvm {{uuid|vm_name}} --memory {{2048}} --cpus {{2}}`
13
14
+- Enable Remote Display (VRDE):
15
16
+`VBoxManage modifyvm {{uuid|vm_name}} --vrde on`
17
18
+- Enable session recording:
19
20
+`VBoxManage modifyvm {{uuid|vm_name}} --recording on`
0 commit comments